1. 9b8314c bpo-36611: Fix test_sys.test_getallocatedblocks() (GH-12797) by Victor Stinner · 5 years ago
  2. f2a1867 bpo-30040: new empty dict uses key-sharing dict (GH-1080) by Inada Naoki · 5 years ago
  3. b9498e2 bpo-35202: Remove unused imports in Lib directory. (GH-10446) by Srinivas Thatiparthy (శ్రీనివాస్ తాటిపర్తి) · 6 years ago
  4. 06e7608 Revert "bpo-34589: Add -X coerce_c_locale command line option (GH-9378)" (GH-9430) by Victor Stinner · 6 years ago
  5. dbdee00 bpo-34589: Add -X coerce_c_locale command line option (GH-9378) by Victor Stinner · 6 years ago
  6. b2457ef bpo-34523: Add _PyCoreConfig.filesystem_encoding (GH-8963) by Victor Stinner · 6 years ago
  7. 315877d bpo-34485: stdout uses surrogateescape on POSIX locale (GH-8986) by Victor Stinner · 6 years ago
  8. 9e4994d bpo-34485: Enhance init_sys_streams() (GH-8978) by Victor Stinner · 6 years ago
  9. 0977091 bpo-33128 Fix duplicated call to importlib._install_external_importers (GH-6273) by Pablo Galindo · 6 years ago
  10. 91106cd bpo-29240: PEP 540: Add a new UTF-8 Mode (#855) by Victor Stinner · 7 years ago
  11. 5e3806f bpo-32101: Add PYTHONDEVMODE environment variable (#4624) by Victor Stinner · 7 years ago
  12. 5d39e04 bpo-32030: Rework memory allocators (#4625) by Victor Stinner · 7 years ago
  13. edad8ee bpo-31949: Fixed several issues in printing tracebacks (PyTraceBack_Print()). (#4289) by Serhiy Storchaka · 7 years ago
  14. 39a156c Fix the sizeof test for dicts with shared keys. (#4311) by Serhiy Storchaka · 7 years ago
  15. ae3087c Move exc state to generator. Fixes bpo-25612 (#1773) by Mark Shannon · 7 years ago
  16. 5a85167 bpo-31344: Per-frame control of trace events (GH-3417) by Nick Coghlan · 7 years ago
  17. a6a4dc8 bpo-31370: Remove support for threads-less builds (#3385) by Antoine Pitrou · 7 years ago
  18. 6ea4186 bpo-28180: Implementation for PEP 538 (#659) by Nick Coghlan · 7 years ago
  19. b4dc6af bpo-12414: Update code_sizeof() to take in account co_extra memory. (#1168) by Dong-hee Na · 7 years ago
  20. d6debb2 bpo-29919: Remove unused imports found by pyflakes (#137) by Victor Stinner · 7 years ago
  21. aefa7eb bpo-6532: Make the thread id an unsigned integer. (#781) by Serhiy Storchaka · 7 years ago
  22. 5bb8b91 Issue #18896: Python function can now have more than 255 parameters. by Serhiy Storchaka · 8 years ago
  23. d6958ac Add sys.getandroidapilevel() by Victor Stinner · 8 years ago
  24. a1fd078 Try to fix sizeof unit tests on dict by Victor Stinner · 8 years ago
  25. eb63645 Issue #28003: Implement PEP 525 -- Asynchronous Generators. by Yury Selivanov · 8 years ago
  26. 4f29e75 Issue #24254: Drop cls.__definition_order__. by Eric Snow · 8 years ago
  27. 3b6a6b4 Add a new private version to the builtin dict type by Victor Stinner · 8 years ago
  28. e58571b Fixes tests broken by issue #27781. by Steve Dower · 8 years ago
  29. 742da04 Implement compact dict by Victor Stinner · 8 years ago
  30. 46d3a59 fix expected layout of code objects by Benjamin Peterson · 8 years ago
  31. 92a6c17 Issue #24254: Preserve class attribute definition order. by Eric Snow · 8 years ago
  32. a793037 Issue #19527: Fixed tests with defined COUNT_ALLOCS. by Serhiy Storchaka · 8 years ago
  33. 6a7b3a7 Issue #26778: Fixed "a/an/and" typos in code comment and documentation. by Serhiy Storchaka · 8 years ago
  34. fc43511 Issue #25339: PYTHONIOENCODING now has priority over locale in setting the by Serhiy Storchaka · 8 years ago
  35. 5185597 Fixed sizeof tests for dict and type (they were passed by accident). by Serhiy Storchaka · 9 years ago
  36. aaf69ac Don't create non-needed file. by Serhiy Storchaka · 9 years ago
  37. 9c297e4 Use correct PyGC_Head size in tests for issue #25421. by Serhiy Storchaka · 9 years ago
  38. 5c4064e Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size. by Serhiy Storchaka · 9 years ago
  39. 50856d5 sys.setrecursionlimit() now raises RecursionError by Victor Stinner · 9 years ago
  40. 87bddba (Merge 3.4) Issue #25274: test_recursionlimit_recovery() of test_sys now checks by Victor Stinner · 9 years ago
  41. 3f18f10 Issue #25274: test_recursionlimit_recovery() of test_sys now checks by Victor Stinner · 9 years ago
  42. f488fb4 Issue #19235: Add new RecursionError exception. Patch by Georg Brandl. by Yury Selivanov · 9 years ago
  43. 7544508 PEP 0492 -- Coroutines with async and await syntax. Issue #24017. by Yury Selivanov · 9 years ago
  44. ce64391 Issue #9517: Move script_helper to the support package. by Berker Peksag · 9 years ago
  45. 63afdaa Issue #23629: Fix the default __sizeof__ implementation for variable-sized objects. by Antoine Pitrou · 9 years ago
  46. a654510 Issue #23629: Fix the default __sizeof__ implementation for variable-sized objects. by Antoine Pitrou · 9 years ago
  47. bcf527e merge 3.4 by Benjamin Peterson · 9 years ago
  48. f5f9c13 adjust for py3k module renaming by Benjamin Peterson · 9 years ago
  49. 5e69419 merge 3.4 by Benjamin Peterson · 9 years ago
  50. 3356a2e _clear_type_cache is cpython-only by Benjamin Peterson · 9 years ago
  51. f5324d7 Closes #22668: Merge from 3.4. by Stefan Krah · 10 years ago
  52. 93035c4 Issue #23119: Simplify setobject by inlining the special case for unicode equality testing. by Raymond Hettinger · 10 years ago
  53. 1202a47 Issue 23261: Clean-up the hack to store the set.pop() search finger in a hash field instead of the setobject. by Raymond Hettinger · 10 years ago
  54. 5db1bb8 Issue #22696: Add function :func:`sys.is_finalizing` to know about interpreter shutdown. by Antoine Pitrou · 10 years ago
  55. 4282656 Issue #22193: Fixed integer overflow error in sys.getsizeof(). by Serhiy Storchaka · 10 years ago
  56. 030e92d Issue #22193: Fixed integer overflow error in sys.getsizeof(). by Serhiy Storchaka · 10 years ago
  57. cddaa1b (Merge 3.4) Closes #22205: sys._debugmallocstats is a cpython specific feature, by Victor Stinner · 10 years ago
  58. 8e7966b Closes #22205: sys._debugmallocstats is a cpython specific feature, so by Victor Stinner · 10 years ago
  59. b349e4c Issue #22116: C functions and methods (of the 'builtin_function_or_method' type) can now be weakref'ed. Patch by Wei Wu. by Antoine Pitrou · 10 years ago
  60. 7db27c8 Issue #21205: Fix unit tests by Victor Stinner · 10 years ago
  61. 3a74ce2 Issue #13204: Calling sys.flags.__new__ would crash the interpreter, now it raises a TypeError. by Antoine Pitrou · 10 years ago
  62. 871dfc4 Issue #13204: Calling sys.flags.__new__ would crash the interpreter, now it raises a TypeError. by Antoine Pitrou · 10 years ago
  63. d51374e PEP 465: a dedicated infix operator for matrix multiplication (closes #21176) by Benjamin Peterson · 10 years ago
  64. 97f17a7 Issue #19977: Enable test_c_locale_surrogateescape() on Windows by Victor Stinner · 10 years ago
  65. 7143029 Issue #19977: When the ``LC_TYPE`` locale is the POSIX locale (``C`` locale), by Victor Stinner · 10 years ago
  66. 1d7ba5c Issue #20510: Merge with 3.3 by Zachary Ware · 10 years ago
  67. 1f9e601 Issue #20510: Confirm that the code attribute of the SystemExit by Zachary Ware · 10 years ago
  68. c36e504 Issue #20510: Merge with 3.3. by Zachary Ware · 10 years ago
  69. cefe6b3 Issue #20510: Rewrote test_exit in test_sys to match existing comments by Zachary Ware · 10 years ago
  70. f28ba36 Issue #20532: Tests which use _testcapi now are marked as CPython only. by Serhiy Storchaka · 10 years ago
  71. 5cfc79d Issue #20532: Tests which use _testcapi now are marked as CPython only. by Serhiy Storchaka · 10 years ago
  72. ed0b87d Fix the C definition of the sys._debugmallocstats() function: the function has by Victor Stinner · 11 years ago
  73. fdeb6ec Issue #14432: Remove the thread state field from the frame structure. Fix a by Victor Stinner · 11 years ago
  74. 56668dc Issue #19751: Fix hash_info test of test_sys on SPARC Solaris by Victor Stinner · 11 years ago
  75. 4b6d4b5 Issue #19751: Fix typo in configuration option by Victor Stinner · 11 years ago
  76. 985ecdc ssue #19183: Implement PEP 456 'secure and interchangeable hash algorithm'. by Christian Heimes · 11 years ago
  77. 4376763 Issue #18702: All skipped tests now reported as skipped. by Serhiy Storchaka · 11 years ago
  78. 7908068 Issue #18702: All skipped tests now reported as skipped. by Serhiy Storchaka · 11 years ago
  79. 77e904e Issue #18948: improve SuppressCoreFiles to include Windows crash popup suppression, and use it in more tests. by Antoine Pitrou · 11 years ago
  80. 5df8a8a Issue #19087: Improve bytearray allocation in order to allow cheap popping of data at the front (slice deletion). by Antoine Pitrou · 11 years ago
  81. bf28d2d Issue #18818: The "encodingname" part of PYTHONIOENCODING is now optional. by Serhiy Storchaka · 11 years ago
  82. 46e1ce2 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  83. 9594942 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  84. ad73a9c Issue #16400: Add command line option for isolated mode. by Christian Heimes · 11 years ago
  85. 58720d6 Issue #17934: Add a clear() method to frame objects, to help clean up expensive details (local variables) and break reference cycles. by Antoine Pitrou · 11 years ago
  86. dcedaf6 Issue #18214: Improve finalization of Python modules to avoid setting their globals to None, in most cases. by Antoine Pitrou · 11 years ago
  87. 796564c Issue #18112: PEP 442 implementation (safe object finalization). by Antoine Pitrou · 11 years ago
  88. 80bc00f Issue #18063: fix some struct specifications in the tests for sys.getsizeof(). by Antoine Pitrou · 11 years ago
  89. 1256f1f Issue #18063: fix some struct specifications in the tests for sys.getsizeof(). by Antoine Pitrou · 11 years ago
  90. 9396356 Backout c89febab4648 following private feedback by Guido. by Antoine Pitrou · 11 years ago
  91. 04e70d1 Issue #17807: Generators can now be finalized even when they are part of a reference cycle. by Antoine Pitrou · 11 years ago
  92. a612176 #17493: merge with 3.3. by Ezio Melotti · 11 years ago
  93. a49178e #17493: merge with 3.2. by Ezio Melotti · 11 years ago
  94. 958f7ae #17493: re-enable a test on Windows. Patch by Zachary Ware. by Ezio Melotti · 11 years ago
  95. f61dc4c Relax test when WITH_PYMALLOC is false or undefined. by Antoine Pitrou · 12 years ago
  96. 9284053 Following issue #13390, fix compilation --without-pymalloc, and make sys.getallocatedblocks() return 0 in that situation. by Antoine Pitrou · 12 years ago
  97. f9d0b12 Issue #13390: New function :func:`sys.getallocatedblocks()` returns the number of memory blocks currently allocated. by Antoine Pitrou · 12 years ago
  98. 29e02a2 merge 3.3 by Benjamin Peterson · 12 years ago
  99. b29614e compare singletons by identity not equality (closes #16712) by Benjamin Peterson · 12 years ago
  100. f01d695 Closes #16135: Removal of OS/2 support by Jesus Cea · 12 years ago