1. a1fd078 Try to fix sizeof unit tests on dict by Victor Stinner · 8 years ago
  2. eb63645 Issue #28003: Implement PEP 525 -- Asynchronous Generators. by Yury Selivanov · 8 years ago
  3. 4f29e75 Issue #24254: Drop cls.__definition_order__. by Eric Snow · 8 years ago
  4. 3b6a6b4 Add a new private version to the builtin dict type by Victor Stinner · 8 years ago
  5. e58571b Fixes tests broken by issue #27781. by Steve Dower · 8 years ago
  6. 742da04 Implement compact dict by Victor Stinner · 8 years ago
  7. 46d3a59 fix expected layout of code objects by Benjamin Peterson · 8 years ago
  8. 92a6c17 Issue #24254: Preserve class attribute definition order. by Eric Snow · 8 years ago
  9. a793037 Issue #19527: Fixed tests with defined COUNT_ALLOCS. by Serhiy Storchaka · 8 years ago
  10. 6a7b3a7 Issue #26778: Fixed "a/an/and" typos in code comment and documentation. by Serhiy Storchaka · 8 years ago
  11. fc43511 Issue #25339: PYTHONIOENCODING now has priority over locale in setting the by Serhiy Storchaka · 8 years ago
  12. 5185597 Fixed sizeof tests for dict and type (they were passed by accident). by Serhiy Storchaka · 9 years ago
  13. aaf69ac Don't create non-needed file. by Serhiy Storchaka · 9 years ago
  14. 9c297e4 Use correct PyGC_Head size in tests for issue #25421. by Serhiy Storchaka · 9 years ago
  15. 5c4064e Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size. by Serhiy Storchaka · 9 years ago
  16. 50856d5 sys.setrecursionlimit() now raises RecursionError by Victor Stinner · 9 years ago
  17. 87bddba (Merge 3.4) Issue #25274: test_recursionlimit_recovery() of test_sys now checks by Victor Stinner · 9 years ago
  18. 3f18f10 Issue #25274: test_recursionlimit_recovery() of test_sys now checks by Victor Stinner · 9 years ago
  19. f488fb4 Issue #19235: Add new RecursionError exception. Patch by Georg Brandl. by Yury Selivanov · 9 years ago
  20. 7544508 PEP 0492 -- Coroutines with async and await syntax. Issue #24017. by Yury Selivanov · 9 years ago
  21. ce64391 Issue #9517: Move script_helper to the support package. by Berker Peksag · 9 years ago
  22. 63afdaa Issue #23629: Fix the default __sizeof__ implementation for variable-sized objects. by Antoine Pitrou · 10 years ago
  23. a654510 Issue #23629: Fix the default __sizeof__ implementation for variable-sized objects. by Antoine Pitrou · 10 years ago
  24. bcf527e merge 3.4 by Benjamin Peterson · 10 years ago
  25. f5f9c13 adjust for py3k module renaming by Benjamin Peterson · 10 years ago
  26. 5e69419 merge 3.4 by Benjamin Peterson · 10 years ago
  27. 3356a2e _clear_type_cache is cpython-only by Benjamin Peterson · 10 years ago
  28. f5324d7 Closes #22668: Merge from 3.4. by Stefan Krah · 10 years ago
  29. 93035c4 Issue #23119: Simplify setobject by inlining the special case for unicode equality testing. by Raymond Hettinger · 10 years ago
  30. 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
  31. 5db1bb8 Issue #22696: Add function :func:`sys.is_finalizing` to know about interpreter shutdown. by Antoine Pitrou · 10 years ago
  32. 4282656 Issue #22193: Fixed integer overflow error in sys.getsizeof(). by Serhiy Storchaka · 10 years ago
  33. 030e92d Issue #22193: Fixed integer overflow error in sys.getsizeof(). by Serhiy Storchaka · 10 years ago
  34. cddaa1b (Merge 3.4) Closes #22205: sys._debugmallocstats is a cpython specific feature, by Victor Stinner · 10 years ago
  35. 8e7966b Closes #22205: sys._debugmallocstats is a cpython specific feature, so by Victor Stinner · 10 years ago
  36. 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
  37. 7db27c8 Issue #21205: Fix unit tests by Victor Stinner · 10 years ago
  38. 3a74ce2 Issue #13204: Calling sys.flags.__new__ would crash the interpreter, now it raises a TypeError. by Antoine Pitrou · 10 years ago
  39. 871dfc4 Issue #13204: Calling sys.flags.__new__ would crash the interpreter, now it raises a TypeError. by Antoine Pitrou · 10 years ago
  40. d51374e PEP 465: a dedicated infix operator for matrix multiplication (closes #21176) by Benjamin Peterson · 10 years ago
  41. 97f17a7 Issue #19977: Enable test_c_locale_surrogateescape() on Windows by Victor Stinner · 11 years ago
  42. 7143029 Issue #19977: When the ``LC_TYPE`` locale is the POSIX locale (``C`` locale), by Victor Stinner · 11 years ago
  43. 1d7ba5c Issue #20510: Merge with 3.3 by Zachary Ware · 11 years ago
  44. 1f9e601 Issue #20510: Confirm that the code attribute of the SystemExit by Zachary Ware · 11 years ago
  45. c36e504 Issue #20510: Merge with 3.3. by Zachary Ware · 11 years ago
  46. cefe6b3 Issue #20510: Rewrote test_exit in test_sys to match existing comments by Zachary Ware · 11 years ago
  47. f28ba36 Issue #20532: Tests which use _testcapi now are marked as CPython only. by Serhiy Storchaka · 11 years ago
  48. 5cfc79d Issue #20532: Tests which use _testcapi now are marked as CPython only. by Serhiy Storchaka · 11 years ago
  49. ed0b87d Fix the C definition of the sys._debugmallocstats() function: the function has by Victor Stinner · 11 years ago
  50. fdeb6ec Issue #14432: Remove the thread state field from the frame structure. Fix a by Victor Stinner · 11 years ago
  51. 56668dc Issue #19751: Fix hash_info test of test_sys on SPARC Solaris by Victor Stinner · 11 years ago
  52. 4b6d4b5 Issue #19751: Fix typo in configuration option by Victor Stinner · 11 years ago
  53. 985ecdc ssue #19183: Implement PEP 456 'secure and interchangeable hash algorithm'. by Christian Heimes · 11 years ago
  54. 4376763 Issue #18702: All skipped tests now reported as skipped. by Serhiy Storchaka · 11 years ago
  55. 7908068 Issue #18702: All skipped tests now reported as skipped. by Serhiy Storchaka · 11 years ago
  56. 77e904e Issue #18948: improve SuppressCoreFiles to include Windows crash popup suppression, and use it in more tests. by Antoine Pitrou · 11 years ago
  57. 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
  58. bf28d2d Issue #18818: The "encodingname" part of PYTHONIOENCODING is now optional. by Serhiy Storchaka · 11 years ago
  59. 46e1ce2 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  60. 9594942 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  61. ad73a9c Issue #16400: Add command line option for isolated mode. by Christian Heimes · 11 years ago
  62. 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
  63. dcedaf6 Issue #18214: Improve finalization of Python modules to avoid setting their globals to None, in most cases. by Antoine Pitrou · 11 years ago
  64. 796564c Issue #18112: PEP 442 implementation (safe object finalization). by Antoine Pitrou · 11 years ago
  65. 80bc00f Issue #18063: fix some struct specifications in the tests for sys.getsizeof(). by Antoine Pitrou · 11 years ago
  66. 1256f1f Issue #18063: fix some struct specifications in the tests for sys.getsizeof(). by Antoine Pitrou · 11 years ago
  67. 9396356 Backout c89febab4648 following private feedback by Guido. by Antoine Pitrou · 11 years ago
  68. 04e70d1 Issue #17807: Generators can now be finalized even when they are part of a reference cycle. by Antoine Pitrou · 11 years ago
  69. a612176 #17493: merge with 3.3. by Ezio Melotti · 12 years ago
  70. a49178e #17493: merge with 3.2. by Ezio Melotti · 12 years ago
  71. 958f7ae #17493: re-enable a test on Windows. Patch by Zachary Ware. by Ezio Melotti · 12 years ago
  72. f61dc4c Relax test when WITH_PYMALLOC is false or undefined. by Antoine Pitrou · 12 years ago
  73. 9284053 Following issue #13390, fix compilation --without-pymalloc, and make sys.getallocatedblocks() return 0 in that situation. by Antoine Pitrou · 12 years ago
  74. f9d0b12 Issue #13390: New function :func:`sys.getallocatedblocks()` returns the number of memory blocks currently allocated. by Antoine Pitrou · 12 years ago
  75. 29e02a2 merge 3.3 by Benjamin Peterson · 12 years ago
  76. b29614e compare singletons by identity not equality (closes #16712) by Benjamin Peterson · 12 years ago
  77. f01d695 Closes #16135: Removal of OS/2 support by Jesus Cea · 12 years ago
  78. e054f45 Fix test_sys.test_implementation for final releases. by Georg Brandl · 12 years ago
  79. 6f1a40f Merge universal newlines-related fixes (issue #13119) by Antoine Pitrou · 12 years ago
  80. 894375a Fix test_sys under Windows (issue #13119) by Antoine Pitrou · 12 years ago
  81. 2b16844 Issue #15467: Merge 3.2 by Martin v. Löwis · 12 years ago
  82. 33f7997 Issue #15467: Move helpers for __sizeof__ tests into test_support. by Martin v. Löwis · 12 years ago
  83. 3bbd2fa Issue #15456: Fix code __sizeof__ after #12399 change. by Martin v. Löwis · 12 years ago
  84. 49526f4 Issue #14785: Add sys._debugmallocstats() to help debug low-level memory allocation issues by David Malcolm · 12 years ago
  85. efce00c Whitespace normalization by Barry Warsaw · 12 years ago
  86. 028b37c PEP 421 requires that .name be lower case. by Barry Warsaw · 12 years ago
  87. 409da15 Eric Snow's implementation of PEP 421. by Barry Warsaw · 12 years ago
  88. 3e0a1eb Issue #14930: Make memoryview objects weakrefable. by Richard Oudkerk · 12 years ago
  89. 7ded1f0 Implemented PEP 405 (Python virtual environments). by Vinay Sajip · 12 years ago
  90. d5a1c44 PEP 415: Implement suppression of __context__ display with an exception attribute by Benjamin Peterson · 12 years ago
  91. acf85cd Issue #13959: Re-implement imp.NullImporter in Lib/imp.py. by Brett Cannon · 12 years ago
  92. 4f2f3b6 Account for shared keys in type's __sizeof__ (#13903). by Martin v. Loewis · 12 years ago
  93. 7d95e40 Implement PEP 412: Key-sharing dictionaries (closes #13903) by Benjamin Peterson · 12 years ago
  94. 2afe6ae perform yield from delegation by repeating YIELD_FROM opcode (closes #14230) by Benjamin Peterson · 13 years ago
  95. f28fcff adjust for change in AST type by Benjamin Peterson · 13 years ago
  96. 9a2d99e - Issue #10181: New memoryview implementation fixes multiple ownership by Stefan Krah · 13 years ago
  97. 2fb477c Merge 3.2: Issue #13703 plus some related test suite fixes. by Georg Brandl · 13 years ago
  98. 09a7c72 Merge from 3.1: Issue #13703: add a way to randomize the hash values of basic types (str, bytes, datetime) by Georg Brandl · 13 years ago
  99. 2daf6ae Issue #13703: add a way to randomize the hash values of basic types (str, bytes, datetime) by Georg Brandl · 13 years ago
  100. 85c71ae fix test now that staticmethod and classmethod are bigger by Benjamin Peterson · 13 years ago