1. 0651583 Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSize by Serhiy Storchaka · 8 years ago
  2. 3bd7900 merge 3.5 by Benjamin Peterson · 8 years ago
  3. db87c99 make sure dict view types are initialized by Benjamin Peterson · 8 years ago
  4. 742da04 Implement compact dict by Victor Stinner · 8 years ago
  5. 7e160ce Issue #23034: The output of a special Python build with defined COUNT_ALLOCS, by Serhiy Storchaka · 8 years ago
  6. e501a93 Issue #27125: Merge typo fixes from 3.5 by Martin Panter · 8 years ago
  7. 8d56c02 Issue #27125: Fix various errors like “will [be] inherited” by Martin Panter · 8 years ago
  8. 55c861f Issue #26745: Removed redundant code in _PyObject_GenericSetAttrWithDict. by Serhiy Storchaka · 8 years ago
  9. ec39756 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 8 years ago
  10. 576f132 Issue #20440: Cleaning up the code by using Py_SETREF. by Serhiy Storchaka · 8 years ago
  11. 2d06e84 Issue #25923: Added the const qualifier to static constant arrays. by Serhiy Storchaka · 8 years ago
  12. 91108f0 Issue #25210: Change error message of do_richcompare() by Victor Stinner · 9 years ago
  13. 3f930dc Merge typo fixes from 3.4 into 3.5 by Martin Panter · 9 years ago
  14. 9955a37 Various minor typos in documentation and comments by Martin Panter · 9 years ago
  15. 5376ba9 Issue #24400: Introduce a distinct type for 'async def' coroutines. by Yury Selivanov · 9 years ago
  16. 96c6af9 Issue #16991: Add a C implementation of collections.OrderedDict. by Eric Snow · 9 years ago
  17. 42fc0eb Issue #21293: Remove unnecessary "capsule hack". by Larry Hastings · 9 years ago
  18. d600951 Issue #22869: Split pythonrun into two modules by Nick Coghlan · 10 years ago
  19. 5a1bb4e Initialize base types before child types by Victor Stinner · 10 years ago
  20. 04d17d3 Issue #21073: explain why Py_ReprEnter() allows for a missing thread state. by Antoine Pitrou · 10 years ago
  21. d979e43 Close #20500: Don't trigger PyObject_Str assertion at shutdown by Nick Coghlan · 10 years ago
  22. 2ccf8e9 Issue #6477: Merge with 3.3. by Alexandre Vassalotti · 10 years ago
  23. 65846c6 Issue #6477: Keep PyNotImplemented_Type and PyNone_Type private. by Alexandre Vassalotti · 10 years ago
  24. 3c23e7a Issue #6477: Merge with 3.3. by Alexandre Vassalotti · 10 years ago
  25. 19b6fa6 Issue #6477: Added support for pickling the types of built-in singletons. by Alexandre Vassalotti · 10 years ago
  26. c49477b Make Ellipsis and NotImplemented picklable through the reduce protocol. by Alexandre Vassalotti · 11 years ago
  27. 985ecdc ssue #19183: Implement PEP 456 'secure and interchangeable hash algorithm'. by Christian Heimes · 11 years ago
  28. bd303c1 Issue #19512, #19515: remove shared identifiers, move identifiers where they by Victor Stinner · 11 years ago
  29. 53e9ec4 Issue #19512: Use the new _PyId_builtins identifier by Victor Stinner · 11 years ago
  30. 7a07e45 Issue #19512: Py_ReprEnter() and Py_ReprLeave() now use an identifier for the by Victor Stinner · 11 years ago
  31. 41bb43a Issue #18408: Add a new PyFrame_FastToLocalsWithError() function to handle by Victor Stinner · 11 years ago
  32. 8f8839e Remove the freelist scheme for setobjects. by Raymond Hettinger · 11 years ago
  33. 33824f6 Restore changeset 5bd9db528aed (issue #18408) by Victor Stinner · 11 years ago
  34. e513210 Issue #18408: _PyObject_Dump() now saves/restores the current exception by Victor Stinner · 11 years ago
  35. 9d95254 Issue #18772: fix the gdb plugin after the set implementation changes by Antoine Pitrou · 11 years ago
  36. 9154193 Back out 5bd9db528aed (issue #18408). It caused unsolved buildbot failures. by Antoine Pitrou · 11 years ago
  37. 9ed5f27 Issue #18722: Remove uses of the "register" keyword in C code. by Antoine Pitrou · 11 years ago
  38. 796564c Issue #18112: PEP 442 implementation (safe object finalization). by Antoine Pitrou · 11 years ago
  39. 8e47832 Issue #18408: PyObject_Str(), PyObject_Repr() and type_call() now fail with an by Victor Stinner · 11 years ago
  40. e901d1f Issue #18408: Fix Py_ReprEnter(), handle PyList_Append() failure by Victor Stinner · 11 years ago
  41. 1b63493 Issue #18408: Py_ReprLeave() now saves/restores the current exception, by Victor Stinner · 11 years ago
  42. 0507bf5 Issue #3329: Implement the PEP 445 by Victor Stinner · 11 years ago
  43. 36f01ad Revert changeset 6661a8154eb3: Issue #3329: Add new APIs to customize memory allocators by Victor Stinner · 11 years ago
  44. 4d70562 Issue #3329: Add new APIs to customize memory allocators by Victor Stinner · 11 years ago
  45. af03757 Optimize ascii(str): don't encode/decode repr if repr is already ASCII by Victor Stinner · 11 years ago
  46. 42124a7 initialize map/filter/zip in _PyBuiltin_Init rather than the catch-all function by Benjamin Peterson · 12 years ago
  47. 7ff2094 merge 3.3 (#16369) by Benjamin Peterson · 12 years ago
  48. e8ea97f merge 3.2 (#16369) by Benjamin Peterson · 12 years ago
  49. c431128 initialize more global type objects (closes #16369) by Benjamin Peterson · 12 years ago
  50. 226b1db Added notimplemented_dealloc for better error reporting by Armin Ronacher · 12 years ago
  51. 56cd62c Issue #13992: The trashcan mechanism is now thread-safe. This eliminates by Antoine Pitrou · 12 years ago
  52. 2b0218a Issue #13992: The trashcan mechanism is now thread-safe. This eliminates by Antoine Pitrou · 12 years ago
  53. 49526f4 Issue #14785: Add sys._debugmallocstats() to help debug low-level memory allocation issues by David Malcolm · 12 years ago
  54. 409da15 Eric Snow's implementation of PEP 421. by Barry Warsaw · 12 years ago
  55. 7d95e40 Implement PEP 412: Key-sharing dictionaries (closes #13903) by Benjamin Peterson · 12 years ago
  56. 64ed576 merge 3.2 (#14509) by Benjamin Peterson · 12 years ago
  57. a701388 Rename _PyIter_GetBuiltin to _PyObject_GetBuiltin, and do not include it in the stable ABI. by Antoine Pitrou · 12 years ago
  58. 59af08f Micro-optimize PyObject_GetAttrString() by Victor Stinner · 12 years ago
  59. 74529ad refactor and avoid warnings by Benjamin Peterson · 12 years ago
  60. 2d01dc0 Issue #14211: _PyObject_GenericSetAttrWithDict() keeps a strong reference to by Victor Stinner · 12 years ago
  61. 9a2d99e - Issue #10181: New memoryview implementation fixes multiple ownership by Stefan Krah · 12 years ago
  62. d9a3591 merge 3.2 by Benjamin Peterson · 12 years ago
  63. 2fb477c Merge 3.2: Issue #13703 plus some related test suite fixes. by Georg Brandl · 12 years ago
  64. 09a7c72 Merge from 3.1: Issue #13703: add a way to randomize the hash values of basic types (str, bytes, datetime) by Georg Brandl · 12 years ago
  65. 2daf6ae Issue #13703: add a way to randomize the hash values of basic types (str, bytes, datetime) by Georg Brandl · 12 years ago
  66. 8eb1269 add generic implementation of a __dict__ descriptor for C types by Benjamin Peterson · 12 years ago
  67. ce79852 use the static identifier api for looking up special methods by Benjamin Peterson · 12 years ago
  68. f5b62a9 Consolidate the occurrances of the prime used as the multiplier when hashing. by Gregory P. Smith · 12 years ago
  69. bfebb7b improve abstract property support (closes #11610) by Benjamin Peterson · 12 years ago
  70. 0a54cf1 Fix PyObject_Repr(): don't call PyUnicode_READY() if res is NULL by Victor Stinner · 12 years ago
  71. db88ae5 PyObject_Repr() ensures that the result is a ready Unicode string by Victor Stinner · 12 years ago
  72. ce4a9da Issue #13411: memoryview objects are now hashable when the underlying object is hashable. by Antoine Pitrou · 13 years ago
  73. 4ead7c7 PyObject_Str() ensures that the result string is ready by Victor Stinner · 13 years ago
  74. d10759f Make _PyUnicode_FromId return borrowed references. by Martin v. Löwis · 13 years ago
  75. afe55bb Add API for static strings, primarily good for identifiers. by Martin v. Löwis · 13 years ago
  76. d63a3b8 Implement PEP 393. by Martin v. Löwis · 13 years ago
  77. e35dc51 merge 3.2 by Benjamin Peterson · 13 years ago
  78. eff61f6 make sure to initialize the method wrapper type by Benjamin Peterson · 13 years ago
  79. dfc80e3 Replace Py_NotImplemented returns with the macro form Py_RETURN_NOTIMPLEMENTED. by Brian Curtin · 13 years ago
  80. ecb3bd9 merge 3.2 by Benjamin Peterson · 13 years ago
  81. 43a976e remove duplicated type ready by Benjamin Peterson · 13 years ago
  82. 18d7d7a also make NotImplementedType callable by Benjamin Peterson · 13 years ago
  83. c4607ae make the types of None and Ellipsis callable by Benjamin Peterson · 13 years ago
  84. 66d2be8 Issue 12647: Add __bool__() method to the None object. by Raymond Hettinger · 13 years ago
  85. 722954a quaint and completely out of date comment by Benjamin Peterson · 13 years ago
  86. 3bbb722 allow __dir__ to return any sequence by Benjamin Peterson · 13 years ago
  87. 82b00c1 move specialized dir implementations into __dir__ methods (closes #12166) by Benjamin Peterson · 13 years ago
  88. 5cc10b0 merge 3.2 by Benjamin Peterson · 13 years ago
  89. f5fcd33 merge 3.1 by Benjamin Peterson · 13 years ago
  90. 7963a35 correctly lookup __dir__ by Benjamin Peterson · 13 years ago
  91. be3bd57 Remove traces of division_warning left over from Python 2 (#10998) by Éric Araujo · 13 years ago
  92. 4d0d471 Merge branches/pep-0384. by Martin v. Löwis · 13 years ago
  93. e5b99f0 Remove redundant includes of headers that are already included by Python.h. by Georg Brandl · 13 years ago
  94. 8035bc5 follow up to #9778: define and use an unsigned hash type by Benjamin Peterson · 14 years ago
  95. 8f67d08 make hashes always the size of pointers; introduce Py_hash_t #9778 by Benjamin Peterson · 14 years ago
  96. f3170cc Use locale encoding if Py_FileSystemDefaultEncoding is not set by Victor Stinner · 14 years ago
  97. c39211f Issue #9630: Redecode filenames when setting the filesystem encoding by Victor Stinner · 14 years ago
  98. 42bc691 Merged revisions 84717 via svnmerge from by Benjamin Peterson · 14 years ago
  99. 41ece39 fix formatting by Benjamin Peterson · 14 years ago
  100. fcd2a79 Merged revisions 84344 via svnmerge from by Antoine Pitrou · 14 years ago