1. 08a9012 Bump version to 3.4.0 alpha 0. by Georg Brandl · 12 years ago
  2. 99a247f Merge with main repo default branch. by Georg Brandl · 12 years ago
  3. c7dcd50 Bump version to 3.3.0 final. by Georg Brandl · 12 years ago
  4. b5f91d7 Merge with 3.3.0 release clone. by Georg Brandl · 12 years ago
  5. f248717 Post-release updates. by Georg Brandl · 12 years ago
  6. 8506d35 Bump to 3.3.0rc3. by Georg Brandl · 12 years ago
  7. fd0ddab GCC doesn't support typeof in strict ansi mode (e.g. -ansi or -std=c89) by Christian Heimes · 12 years ago
  8. ab816b5 GCC doesn't support typeof in strict ansi mode (e.g. -ansi or -std=c89) by Christian Heimes · 12 years ago
  9. ca8aa4a Issue #15144: Fix possible integer overflow when handling pointers as integer values, by using Py_uintptr_t instead of size_t. by Antoine Pitrou · 12 years ago
  10. 5497295 Merge in changes from 3.3.0rc2 release clone. by Georg Brandl · 12 years ago
  11. 05823f7 Post-release updates for 3.3.0rc2. by Georg Brandl · 12 years ago
  12. 5b4faae Issue #13992: The trashcan mechanism is now thread-safe. This eliminates by Antoine Pitrou · 12 years ago
  13. 56cd62c Issue #13992: The trashcan mechanism is now thread-safe. This eliminates by Antoine Pitrou · 12 years ago
  14. 02f66cb Bump to 3.3.0rc2. by Georg Brandl · 12 years ago
  15. 2b0218a Issue #13992: The trashcan mechanism is now thread-safe. This eliminates by Antoine Pitrou · 12 years ago
  16. 81378c8 Merge whitespace fix from 3.2. by Trent Nelson · 12 years ago
  17. 2a0fb14 Remove trailing whitespace in order to silence warnings on HP-UX. by Trent Nelson · 12 years ago
  18. 3694401 Post-release updates. by Georg Brandl · 12 years ago
  19. 4ab4ec2 Bump to 3.3.0rc1. by Georg Brandl · 12 years ago
  20. a026db9 Post-release updates. by Georg Brandl · 12 years ago
  21. 1b94ab7 Bump to 3.3b2. by Georg Brandl · 12 years ago
  22. 522267e Issue #15610: The PyImport_ImportModuleEx macro now calls by Brett Cannon · 12 years ago
  23. 1a1367b use char instead of int to please T_BOOL (closes #15597) by Benjamin Peterson · 12 years ago
  24. 88ca04e MERGE: Closes #15512: Correct __sizeof__ support for parser by Jesus Cea · 12 years ago
  25. e9c5318 Closes #15512: Correct __sizeof__ support for parser by Jesus Cea · 12 years ago
  26. 7d12d9d Issue #12834: Fix PyBuffer_ToContiguous() for non-contiguous arrays. by Stefan Krah · 12 years ago
  27. d08cec6 Bump version to 3.3.0b1. by Georg Brandl · 12 years ago
  28. 75aeaa9 Issue #11626: Add _SizeT functions to stable ABI. by Martin v. Löwis · 12 years ago
  29. 9c56409 Issue #15146: Add PyType_FromSpecWithBases. Patch by Robin Schreiber. by Martin v. Löwis · 12 years ago
  30. 49526f4 Issue #14785: Add sys._debugmallocstats() to help debug low-level memory allocation issues by David Malcolm · 12 years ago
  31. 7800f75 Issue #15042: Add PyState_AddModule and PyState_RemoveModule. by Martin v. Löwis · 12 years ago
  32. e67f48c Issue #14928: Fix importlib bootstrap issues by using a custom executable (Modules/_freeze_importlib) to build Python/importlib.h. by Antoine Pitrou · 12 years ago
  33. c40bc09 Issue #13783: the PEP 380 implementation no longer expands the public C API by Nick Coghlan · 12 years ago
  34. 27f6a3b Issue #15026: utf-16 encoding is now significantly faster (up to 10x). by Antoine Pitrou · 12 years ago
  35. 2b89fdf PEP 418: Rename adjusted attribute to adjustable in time.get_clock_info() result by Victor Stinner · 12 years ago
  36. d7b7c74 Issue #14993: Use standard "unsigned char" instead of a unsigned char bitfield by Victor Stinner · 12 years ago
  37. c58c392 Trunk merge. by Barry Warsaw · 12 years ago
  38. ca75b00 __GNUC__ does not imply gcc version is present, so just check for version (closes #14994) by Benjamin Peterson · 12 years ago
  39. 409da15 Eric Snow's implementation of PEP 421. by Barry Warsaw · 12 years ago
  40. 0813168 Issue #14090: fix some minor C API problems in default branch (3.3) by Eli Bendersky · 12 years ago
  41. 2b6b73e Issue #14007: implement doctype() method calling in XMLParser of _elementtree. by Eli Bendersky · 12 years ago
  42. 8e0ed33 Post-release update. by Georg Brandl · 12 years ago
  43. f0397b9 Bump version to 3.3.0a4. by Georg Brandl · 12 years ago
  44. d3f0882 Issue #14744: Use the new _PyUnicodeWriter internal API to speed up str%args and str.format(args) by Victor Stinner · 12 years ago
  45. 3e0a1eb Issue #14930: Make memoryview objects weakrefable. by Richard Oudkerk · 12 years ago
  46. e1f107e s/tabs/spaces, and clean trailing whitespace by Eli Bendersky · 12 years ago
  47. cc10a37 Widen ASDL sequences to Py_ssize_t lengths to better match PEP 353. by Martin v. Löwis · 12 years ago
  48. d5a1c44 PEP 415: Implement suppression of __context__ display with an exception attribute by Benjamin Peterson · 12 years ago
  49. 85a2394 Post-3.3a3 bump. by Georg Brandl · 12 years ago
  50. 76ad59b Issue #14127: Add ns= parameter to utime, futimes, and lutimes. by Larry Hastings · 12 years ago
  51. 49a69e4 strip is_ prefixes on clock_info fields by Benjamin Peterson · 12 years ago
  52. ab0ef20 Bump to 3.3.0a3. by Georg Brandl · 12 years ago
  53. 62228db Issues #13959, 14647: Re-implement imp.reload() in Lib/imp.py. by Brett Cannon · 12 years ago
  54. e383e82 Issue #14521: Make result of float('nan') and float('-nan') more consistent across platforms. Further, don't rely on Py_HUGE_VAL for float('inf'). by Mark Dickinson · 12 years ago
  55. ec89539 Issue #14428, #14397: Implement the PEP 418 by Victor Stinner · 12 years ago
  56. d0880d5 Simplify and optimize formatlong() by Victor Stinner · 12 years ago
  57. 4f2f3b6 Account for shared keys in type's __sizeof__ (#13903). by Martin v. Loewis · 12 years ago
  58. ece58de Close #14648: Compute correctly maxchar in str.format() for substrin by Victor Stinner · 12 years ago
  59. 7d95e40 Implement PEP 412: Key-sharing dictionaries (closes #13903) by Benjamin Peterson · 12 years ago
  60. 6fe20b3 Issue #14127: Add st_{cma}time_ns fields to os.stat() result object. by Larry Hastings · 12 years ago
  61. aa2efcb Issue #14098: New functions PyErr_GetExcInfo and PyErr_SetExcInfo. by Martin v. Löwis · 12 years ago
  62. 09b86d1 Fix #14600. Correct reference handling and naming of ImportError convenience function by Brian Curtin · 12 years ago
  63. b0f0047 Issue #13889: Merge fix from 3.2. by Mark Dickinson · 12 years ago
  64. 18e3d81 Issue #13889: On MSVC builds, set FPU control word at runtime for all string <-> float conversions. Patch by Samuel Iseli and Stefan Krah. by Mark Dickinson · 12 years ago
  65. fd07415 Issue #2377: Make importlib the implementation of __import__(). by Brett Cannon · 12 years ago
  66. 633b32a put PyImportErrorObject with its brothers by Benjamin Peterson · 12 years ago
  67. 79ec55e Issue #1559549: Add 'name' and 'path' attributes to ImportError. by Brett Cannon · 12 years ago
  68. a51497a Merge 3.2.3 release clone. by Georg Brandl · 12 years ago
  69. 507776e Post-release update. by Georg Brandl · 12 years ago
  70. 4403601 Bump to 3.2.3 final. by Georg Brandl · 12 years ago
  71. 0069bab Reformat by replacing tabs with 4-spaces. Makes the code more PEP-7 compliant by Eli Bendersky · 12 years ago
  72. a701388 Rename _PyIter_GetBuiltin to _PyObject_GetBuiltin, and do not include it in the stable ABI. by Antoine Pitrou · 12 years ago
  73. 31668b8 Issue #14288: Serialization support for builtin iterators. by Kristján Valur Jónsson · 12 years ago
  74. d3fca8e Post-release update. by Georg Brandl · 12 years ago
  75. 50af011 Bump to 3.3.0a2. by Georg Brandl · 12 years ago
  76. 3c1e481 Issue #14383: Add _PyDict_GetItemId() and _PyDict_SetItemId() functions by Victor Stinner · 12 years ago
  77. 192195a Merge with 3.2 (Issue #14387) by Kristján Valur Jónsson · 12 years ago
  78. aa589b3 Issue #14387 : undefine 'small' so that it doesn't clash with Windows headers. by Kristján Valur Jónsson · 12 years ago
  79. b81e538 Issue #14387 : undefine 'small' so that it doesn't clash with Windows headers. by Kristján Valur Jónsson · 12 years ago
  80. d0acb41 Issue #14387: Do not include accu.h from Python.h. by Antoine Pitrou · 12 years ago
  81. 0197ff9 Issue #14387: Do not include accu.h from Python.h. by Antoine Pitrou · 12 years ago
  82. b7f1da5 make _PyNumber_ConvertIntegralToInt static, since it's only used in abstract.c by Benjamin Peterson · 12 years ago
  83. 1919b7e Issue #7652: Integrate the decimal floating point libmpdec library to speed by Stefan Krah · 12 years ago
  84. 3187749 Merge 3.2.3rc2 from release clone. by Georg Brandl · 12 years ago
  85. 1eb0f9d Post-release updates for 3.2.3rc2. by Georg Brandl · 12 years ago
  86. 226af70 Bump to 3.2.3rc2. by Georg Brandl · 12 years ago
  87. 2afe6ae perform yield from delegation by repeating YIELD_FROM opcode (closes #14230) by Benjamin Peterson · 12 years ago
  88. 5ce31cc merge 3.2 by Matthias Klose · 12 years ago
  89. d83be23 merge 3.1 by Matthias Klose · 12 years ago
  90. 0f4c16e - rename configure.in to configure.ac by Matthias Klose · 12 years ago
  91. 5d272cc Close #14180: Factorize code to convert a number of seconds to time_t, timeval or timespec by Victor Stinner · 12 years ago
  92. b4a9237 Fix regression after c8d1df9ac987 (PPC buildbot) by Antoine Pitrou · 12 years ago
  93. 0644741 Fix a comment: PySequence_Fast() creates a list, not a tuple. by Larry Hastings · 12 years ago
  94. ab8f392 3.3.0a1 is done. by Georg Brandl · 12 years ago
  95. 6c8850d Bump to 3.3.0a1. by Georg Brandl · 12 years ago
  96. c9590ad Close #14085: remove assertions from PyUnicode_WRITE macro by Victor Stinner · 12 years ago
  97. 643cd68 Issue #13964: signal.sigtimedwait() timeout is now a float instead of a tuple by Victor Stinner · 12 years ago
  98. efb00c0 Issue #14153 Create _Py_device_encoding() to prevent _io from having to import by Brett Cannon · 12 years ago
  99. 9bd126a the days of pre-standard C compilers are gone by Benjamin Peterson · 12 years ago
  100. ab7bf21 Close issue #6210: Implement PEP 409 by Nick Coghlan · 12 years ago