1. 3f18f10 Issue #25274: test_recursionlimit_recovery() of test_sys now checks by Victor Stinner · 9 years ago
  2. a654510 Issue #23629: Fix the default __sizeof__ implementation for variable-sized objects. by Antoine Pitrou · 9 years ago
  3. f5f9c13 adjust for py3k module renaming by Benjamin Peterson · 9 years ago
  4. 3356a2e _clear_type_cache is cpython-only by Benjamin Peterson · 9 years ago
  5. 030e92d Issue #22193: Fixed integer overflow error in sys.getsizeof(). by Serhiy Storchaka · 10 years ago
  6. 8e7966b Closes #22205: sys._debugmallocstats is a cpython specific feature, so by Victor Stinner · 10 years ago
  7. 871dfc4 Issue #13204: Calling sys.flags.__new__ would crash the interpreter, now it raises a TypeError. by Antoine Pitrou · 10 years ago
  8. 1d7ba5c Issue #20510: Merge with 3.3 by Zachary Ware · 10 years ago
  9. 1f9e601 Issue #20510: Confirm that the code attribute of the SystemExit by Zachary Ware · 10 years ago
  10. c36e504 Issue #20510: Merge with 3.3. by Zachary Ware · 10 years ago
  11. cefe6b3 Issue #20510: Rewrote test_exit in test_sys to match existing comments by Zachary Ware · 10 years ago
  12. f28ba36 Issue #20532: Tests which use _testcapi now are marked as CPython only. by Serhiy Storchaka · 10 years ago
  13. 5cfc79d Issue #20532: Tests which use _testcapi now are marked as CPython only. by Serhiy Storchaka · 10 years ago
  14. ed0b87d Fix the C definition of the sys._debugmallocstats() function: the function has by Victor Stinner · 11 years ago
  15. fdeb6ec Issue #14432: Remove the thread state field from the frame structure. Fix a by Victor Stinner · 11 years ago
  16. 56668dc Issue #19751: Fix hash_info test of test_sys on SPARC Solaris by Victor Stinner · 11 years ago
  17. 4b6d4b5 Issue #19751: Fix typo in configuration option by Victor Stinner · 11 years ago
  18. 985ecdc ssue #19183: Implement PEP 456 'secure and interchangeable hash algorithm'. by Christian Heimes · 11 years ago
  19. 4376763 Issue #18702: All skipped tests now reported as skipped. by Serhiy Storchaka · 11 years ago
  20. 7908068 Issue #18702: All skipped tests now reported as skipped. by Serhiy Storchaka · 11 years ago
  21. 77e904e Issue #18948: improve SuppressCoreFiles to include Windows crash popup suppression, and use it in more tests. by Antoine Pitrou · 11 years ago
  22. 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
  23. bf28d2d Issue #18818: The "encodingname" part of PYTHONIOENCODING is now optional. by Serhiy Storchaka · 11 years ago
  24. 46e1ce2 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  25. 9594942 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  26. ad73a9c Issue #16400: Add command line option for isolated mode. by Christian Heimes · 11 years ago
  27. 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
  28. dcedaf6 Issue #18214: Improve finalization of Python modules to avoid setting their globals to None, in most cases. by Antoine Pitrou · 11 years ago
  29. 796564c Issue #18112: PEP 442 implementation (safe object finalization). by Antoine Pitrou · 11 years ago
  30. 80bc00f Issue #18063: fix some struct specifications in the tests for sys.getsizeof(). by Antoine Pitrou · 11 years ago
  31. 1256f1f Issue #18063: fix some struct specifications in the tests for sys.getsizeof(). by Antoine Pitrou · 11 years ago
  32. 9396356 Backout c89febab4648 following private feedback by Guido. by Antoine Pitrou · 11 years ago
  33. 04e70d1 Issue #17807: Generators can now be finalized even when they are part of a reference cycle. by Antoine Pitrou · 11 years ago
  34. a612176 #17493: merge with 3.3. by Ezio Melotti · 11 years ago
  35. a49178e #17493: merge with 3.2. by Ezio Melotti · 11 years ago
  36. 958f7ae #17493: re-enable a test on Windows. Patch by Zachary Ware. by Ezio Melotti · 11 years ago
  37. f61dc4c Relax test when WITH_PYMALLOC is false or undefined. by Antoine Pitrou · 12 years ago
  38. 9284053 Following issue #13390, fix compilation --without-pymalloc, and make sys.getallocatedblocks() return 0 in that situation. by Antoine Pitrou · 12 years ago
  39. f9d0b12 Issue #13390: New function :func:`sys.getallocatedblocks()` returns the number of memory blocks currently allocated. by Antoine Pitrou · 12 years ago
  40. 29e02a2 merge 3.3 by Benjamin Peterson · 12 years ago
  41. b29614e compare singletons by identity not equality (closes #16712) by Benjamin Peterson · 12 years ago
  42. f01d695 Closes #16135: Removal of OS/2 support by Jesus Cea · 12 years ago
  43. e054f45 Fix test_sys.test_implementation for final releases. by Georg Brandl · 12 years ago
  44. 6f1a40f Merge universal newlines-related fixes (issue #13119) by Antoine Pitrou · 12 years ago
  45. 894375a Fix test_sys under Windows (issue #13119) by Antoine Pitrou · 12 years ago
  46. 2b16844 Issue #15467: Merge 3.2 by Martin v. Löwis · 12 years ago
  47. 33f7997 Issue #15467: Move helpers for __sizeof__ tests into test_support. by Martin v. Löwis · 12 years ago
  48. 3bbd2fa Issue #15456: Fix code __sizeof__ after #12399 change. by Martin v. Löwis · 12 years ago
  49. 49526f4 Issue #14785: Add sys._debugmallocstats() to help debug low-level memory allocation issues by David Malcolm · 12 years ago
  50. efce00c Whitespace normalization by Barry Warsaw · 12 years ago
  51. 028b37c PEP 421 requires that .name be lower case. by Barry Warsaw · 12 years ago
  52. 409da15 Eric Snow's implementation of PEP 421. by Barry Warsaw · 12 years ago
  53. 3e0a1eb Issue #14930: Make memoryview objects weakrefable. by Richard Oudkerk · 12 years ago
  54. 7ded1f0 Implemented PEP 405 (Python virtual environments). by Vinay Sajip · 12 years ago
  55. d5a1c44 PEP 415: Implement suppression of __context__ display with an exception attribute by Benjamin Peterson · 12 years ago
  56. acf85cd Issue #13959: Re-implement imp.NullImporter in Lib/imp.py. by Brett Cannon · 12 years ago
  57. 4f2f3b6 Account for shared keys in type's __sizeof__ (#13903). by Martin v. Loewis · 12 years ago
  58. 7d95e40 Implement PEP 412: Key-sharing dictionaries (closes #13903) by Benjamin Peterson · 12 years ago
  59. 2afe6ae perform yield from delegation by repeating YIELD_FROM opcode (closes #14230) by Benjamin Peterson · 12 years ago
  60. f28fcff adjust for change in AST type by Benjamin Peterson · 12 years ago
  61. 9a2d99e - Issue #10181: New memoryview implementation fixes multiple ownership by Stefan Krah · 12 years ago
  62. 2fb477c Merge 3.2: Issue #13703 plus some related test suite fixes. by Georg Brandl · 12 years ago
  63. 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
  64. 2daf6ae Issue #13703: add a way to randomize the hash values of basic types (str, bytes, datetime) by Georg Brandl · 12 years ago
  65. 85c71ae fix test now that staticmethod and classmethod are bigger by Benjamin Peterson · 12 years ago
  66. 4b0eab6 Merge branch 3.2 by Petri Lehtinen · 12 years ago
  67. 9713321 Document absoluteness of sys.executable by Petri Lehtinen · 12 years ago
  68. 1f7ce62 Implement PEP 380 - 'yield from' (closes #11682) by Nick Coghlan · 13 years ago
  69. 9d57481 Issue #13577: various kinds of descriptors now have a __qualname__ attribute. by Antoine Pitrou · 13 years ago
  70. 86a36b5 PEP 3155 / issue #13448: Qualified name for classes and functions. by Antoine Pitrou · 13 years ago
  71. ce4a9da Issue #13411: memoryview objects are now hashable when the underlying object is hashable. by Antoine Pitrou · 13 years ago
  72. 48a2f8f #13054: sys.maxunicode is now always 0x10FFFF. by Ezio Melotti · 13 years ago
  73. f02aa65 Use compile() instead of eval(). by Martin v. Löwis · 13 years ago
  74. 0c9fe4d Use eval instead of codecs.lookup to trigger UTF-8 generation. by Martin v. Löwis · 13 years ago
  75. d63a3b8 Implement PEP 393. by Martin v. Löwis · 13 years ago
  76. 9003760 map cells to arg slots at code creation time (closes #12399) by Benjamin Peterson · 13 years ago
  77. 2a12974 Close #12028: Make threading._get_ident() public, rename it to by Victor Stinner · 13 years ago
  78. 48006cf Fix test. by Ezio Melotti · 13 years ago
  79. d5c355c Issue #11223: Replace threading._info() by sys.thread_info by Victor Stinner · 13 years ago
  80. be3bd57 Remove traces of division_warning left over from Python 2 (#10998) by Éric Araujo · 13 years ago
  81. 3b3499b #11565: Merge with 3.1. by Ezio Melotti · 13 years ago
  82. 1392500 #11565: Fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 13 years ago
  83. b88ed15 #11565: Merge with 3.2. by Ezio Melotti · 13 years ago
  84. 7a54073 Issue #10992: make tests pass when run under coverage. by Brett Cannon · 13 years ago
  85. 5543e81 Tighten the restrictions on the test_sys test which triggers a fatal error when by Brett Cannon · 13 years ago
  86. c3e8867 Skip a recursion depth check test when running under CPython and have a trace by Brett Cannon · 13 years ago
  87. 7d96771 Update tests and whatsnew for the 'quiet' flag by Raymond Hettinger · 14 years ago
  88. baab9d0 Issue #10783: Fix test_sys, pack('c', ' ') => pack('c', b' ') by Victor Stinner · 14 years ago
  89. 37ee850 Issue 2690: Add support for slicing and negative indices to range objects (includes precalculation and storage of the range length). by Nick Coghlan · 14 years ago
  90. 19f2aeb Merged revisions 86596 via svnmerge from by Ezio Melotti · 14 years ago
  91. b3aedd4 #9424: Replace deprecated assert* methods in the Python test suite. by Ezio Melotti · 14 years ago
  92. aeb6cee Issue #10293: Remove obsolete field in the PyMemoryView structure, by Antoine Pitrou · 14 years ago
  93. fbb1c61 Follow up to #9778: fix regressions on 64-bit Windows builds by Antoine Pitrou · 14 years ago
  94. f6211ed Move test_undecodable_code() from test_sys to test_cmd_line by Victor Stinner · 14 years ago
  95. 8cf4eae First (uncontroversial) part of issue 9807. by Barry Warsaw · 14 years ago
  96. e8f5832 Issue #9308: Removed redundant coding cookies. Added tests for by Alexander Belopolsky · 14 years ago
  97. d24fc5d test_sys: Remove workaround #8611 by Victor Stinner · 14 years ago
  98. 8f6b6b0 Issue #9992: Remove PYTHONFSENCODING environment variable. by Victor Stinner · 14 years ago
  99. 5b519e0 Issue #9632: Remove sys.setfilesystemencoding() function: use PYTHONFSENCODING by Victor Stinner · 14 years ago
  100. ef6ff66 Fix test_sys: set LC_ALL instead of LANG by Victor Stinner · 14 years ago