1. 51fa458 Issue #18203: Fix Py_Finalize(): destroy the GIL after the last call to by Victor Stinner · 11 years ago
  2. 5f454a0 Issue #1545463: Global variables caught in reference cycles are now garbage-collected at shutdown. by Antoine Pitrou · 11 years ago
  3. 4adb566 Fix crash caused by 8c1385205a35 (thanks Arfrever for reporting). by Antoine Pitrou · 11 years ago
  4. fd417cc Fix crash caused by 8c1385205a35 (thanks Arfrever for reporting). by Antoine Pitrou · 11 years ago
  5. 13853a6 #17115: I hate you MS for not supporting C99. by Brett Cannon · 11 years ago
  6. df6931d Issue #17408: Avoid using an obsolete instance of the copyreg module when the interpreter is shutdown and then started again. by Antoine Pitrou · 11 years ago
  7. 957a23b Issue #17408: Avoid using an obsolete instance of the copyreg module when the interpreter is shutdown and then started again. by Antoine Pitrou · 11 years ago
  8. 4c14b5d #17115,17116: Have modules initialize the __package__ and __loader__ by Brett Cannon · 11 years ago
  9. 0bb83f8 merge 3.3 (#17863) by Benjamin Peterson · 11 years ago
  10. fe1b22a ignore errors when trying to fetch sys.stdin.encoding (closes #17863) by Benjamin Peterson · 11 years ago
  11. 208ac5c Issue #17832: fix a compilation warning about a function prototype. by Antoine Pitrou · 11 years ago
  12. 1f8898a #17323: The "[X refs, Y blocks]" printed by debug builds has been disabled by default. It can be re-enabled with the `-X showrefcount` option. by Ezio Melotti · 11 years ago
  13. f9d0b12 Issue #13390: New function :func:`sys.getallocatedblocks()` returns the number of memory blocks currently allocated. by Antoine Pitrou · 12 years ago
  14. 33363f4 Issue #15001: fix segfault on "del sys.module['__main__']" by Hynek Schlawack · 12 years ago
  15. 5c6b3e2 Issue #15001: fix segfault on "del sys.module['__main__']" by Hynek Schlawack · 12 years ago
  16. 90c0eb2 Issue #16218: Support non ascii characters in python launcher. by Andrew Svetlov · 12 years ago
  17. 04ac4c1 Issue #15895: my analysis was slightly off. The FILE pointer is only leaked when set_main_loader() fails for a pyc file with closeit=0. In the success case run_pyc_file() does its own cleanup of the fp. I've changed the code to use another FILE ptr for pyc files and moved the fclose() to PyRun_SimpleFileExFlags() to make it more obvious what's happening. by Christian Heimes · 12 years ago
  18. eeb5635 Issue #15895: Fix FILE pointer leak in PyRun_SimpleFileExFlags() when filename points to a pyc/pyo file and closeit is false. by Christian Heimes · 12 years ago
  19. 90ef747 Close #13119: use "\r\n" newline for sys.stdout/err on Windows by Victor Stinner · 12 years ago
  20. 7b3f0fa Close #13119: use "\r\n" newline for sys.stdout/err on Windows by Victor Stinner · 12 years ago
  21. d5698cb Fix initialization of the faulthandler module by Victor Stinner · 12 years ago
  22. b7a5894 Refcounting fixes by Nick Coghlan · 12 years ago
  23. ceda83c Make set_main_loader static (noticed by Antoine Pitrou) by Nick Coghlan · 12 years ago
  24. 3f94cbf Actually initialize __main__.__loader__ with loader instances, not the corresponding type objects by Nick Coghlan · 12 years ago
  25. 85e729e Take the first step in resolving the messy pkgutil vs importlib edge cases by basing pkgutil explicitly on importlib, deprecating its internal import emulation and setting __main__.__loader__ correctly so that runpy still works (Affects #15343, #15314, #15357) by Nick Coghlan · 12 years ago
  26. 74de153 Issue #15020: The program name used to search for Python's path is now python3 under Unix, not python. by Antoine Pitrou · 12 years ago
  27. 01cca5e Issue #15020: The program name used to search for Python's path is now "python3" under Unix, not "python". by Antoine Pitrou · 12 years ago
  28. 49526f4 Issue #14785: Add sys._debugmallocstats() to help debug low-level memory allocation issues by David Malcolm · 12 years ago
  29. 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
  30. d5a1c44 PEP 415: Implement suppression of __context__ display with an exception attribute by Benjamin Peterson · 12 years ago
  31. 62228db Issues #13959, 14647: Re-implement imp.reload() in Lib/imp.py. by Brett Cannon · 12 years ago
  32. e0d88a1 Issue #14605: Make explicit the entries on sys.path_hooks that used to by Brett Cannon · 12 years ago
  33. 6f44d66 Issue #13959: Rename imp to _imp and add Lib/imp.py and begin by Brett Cannon · 12 years ago
  34. fc9ca27 Plug a refleak. by Brett Cannon · 12 years ago
  35. fd07415 Issue #2377: Make importlib the implementation of __import__(). by Brett Cannon · 12 years ago
  36. 0a9a636 merge 3.2 by Benjamin Peterson · 12 years ago
  37. 80d5042 fix parse_syntax_error to clean up its resources by Benjamin Peterson · 12 years ago
  38. ab7bf21 Close issue #6210: Implement PEP 409 by Nick Coghlan · 12 years ago
  39. 528b54b Fix test failure in test_cmd_line by initializing the hash secret at the earliest point. by Antoine Pitrou · 12 years ago
  40. 86838b0 Fix test failure in test_cmd_line by initializing the hash secret at the earliest point. by Antoine Pitrou · 12 years ago
  41. 2fb477c Merge 3.2: Issue #13703 plus some related test suite fixes. by Georg Brandl · 12 years ago
  42. 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
  43. 2daf6ae Issue #13703: add a way to randomize the hash values of basic types (str, bytes, datetime) by Georg Brandl · 12 years ago
  44. fa21bf0 Issue #12705: Raise SyntaxError when compiling multiple statements as single interactive statement by Meador Inge · 12 years ago
  45. fff47ab Fix a memory leak when initializing the standard I/O streams. by Antoine Pitrou · 12 years ago
  46. 2fabfac Fix a memory leak when initializing the standard I/O streams. by Antoine Pitrou · 12 years ago
  47. 5136ac0 Issue #13645: pyc files now contain the size of the corresponding source by Antoine Pitrou · 13 years ago
  48. aa6c1d2 Issue #13575: there is only one class type. by Florent Xicluna · 13 years ago
  49. 39a73a4 Issue #7111: Python can now be run without a stdin, stdout or stderr stream. by Antoine Pitrou · 13 years ago
  50. 11942a5 Issue #7111: Python can now be run without a stdin, stdout or stderr stream. by Antoine Pitrou · 13 years ago
  51. 5604ef3 Issue #13444: When stdout has been closed explicitly, we should not attempt to flush it at shutdown and print an error. by Antoine Pitrou · 13 years ago
  52. d7c8fbf Issue #13444: When stdout has been closed explicitly, we should not attempt to flush it at shutdown and print an error. by Antoine Pitrou · 13 years ago
  53. e251d6d print_exception() uses PyUnicode_GetLength() instead of PyUnicode_GetSize() by Victor Stinner · 13 years ago
  54. f34a0cd Issue #10227: Add an allocation cache for a single slice object. by Antoine Pitrou · 13 years ago
  55. 3a50e70 Issue #12281: Rewrite the MBCS codec to handle correctly replace and ignore by Victor Stinner · 13 years ago
  56. 1c67dd9 Port SetAttrString/HasAttrString to SetAttrId/GetAttrId. by Martin v. Löwis · 13 years ago
  57. bd928fe Rename _Py_identifier to _Py_IDENTIFIER. by Martin v. Löwis · 13 years ago
  58. 1ee1b6f Use identifier API for PyObject_GetAttrString. by Martin v. Löwis · 13 years ago
  59. afe55bb Add API for static strings, primarily good for identifiers. by Martin v. Löwis · 13 years ago
  60. a80b14c - Issue #13021: Missing decref on an error path. Thanks to Suman Saha for by Barry Warsaw · 13 years ago
  61. 916048d - Issue #13021: Missing decref on an error path. Thanks to Suman Saha for by Barry Warsaw · 13 years ago
  62. d64e8a7 Issue #9642: Fix filesystem encoding initialization: use the ANSI code page on by Victor Stinner · 13 years ago
  63. 13b21bd print_exception(): handle correctly PyObject_GetAttrString() failure by Victor Stinner · 13 years ago
  64. 1a4de20 Merge #6498 fix from 3.2. by Georg Brandl · 13 years ago
  65. 318e621 Merge #6498 fix from 3.1. by Georg Brandl · 13 years ago
  66. 0b2489e Closes #6498: fix several misspellings of "SystemExit" as "SystemError". by Georg Brandl · 13 years ago
  67. 7bba62f faulthandler: dump all threads by default by Victor Stinner · 13 years ago
  68. fc20b0c Issue #1856: Avoid crashes and lockups when daemon threads run while the by Antoine Pitrou · 13 years ago
  69. 0d5e52d Issue #1856: Avoid crashes and lockups when daemon threads run while the by Antoine Pitrou · 13 years ago
  70. 3cbf14b Issue #10914: Initialize correctly the filesystem codec when creating a new by Victor Stinner · 13 years ago
  71. 793b531 Issue #10914: Initialize correctly the filesystem codec when creating a new by Victor Stinner · 13 years ago
  72. 1188935 Issue #10914: Py_NewInterpreter() uses PyErr_PrintEx(0) by Victor Stinner · 13 years ago
  73. c40a350 Issue #10914: Py_NewInterpreter() uses PyErr_PrintEx(0) by Victor Stinner · 13 years ago
  74. 7f2fee3 Issue #10785: Store the filename as Unicode in the Python parser. by Victor Stinner · 13 years ago
  75. d727e23 Issue #11393: The fault handler handles also SIGABRT by Victor Stinner · 13 years ago
  76. 024e37a Issue #11393: Add the new faulthandler module by Victor Stinner · 13 years ago
  77. 9c4efe5 Fix #11586: typo in initfsencoding() by Victor Stinner · 13 years ago
  78. 4ca2809 Fix #11586: typo in initfsencoding() by Victor Stinner · 13 years ago
  79. 02bfdb3 Merged revisions 88530 via svnmerge from by Victor Stinner · 13 years ago
  80. c0f1a1a Issue #11272: Fix input() and sys.stdin for Windows newline by Victor Stinner · 13 years ago
  81. 0fcab4a Issue #9566: use Py_ssize_t instead of int by Victor Stinner · 14 years ago
  82. 8aa7e99 Add sys.flags.quiet attribute for the new -q option, as noted missing by Eric in #1772833. by Georg Brandl · 14 years ago
  83. 8334fd9 Add an "optimize" parameter to compile() to control the optimization level, and provide an interface to it in py_compile, compileall and PyZipFile. by Georg Brandl · 14 years ago
  84. 4d0d471 Merge branches/pep-0384. by Martin v. Löwis · 14 years ago
  85. e5b99f0 Remove redundant includes of headers that are already included by Python.h. by Georg Brandl · 14 years ago
  86. 5a96b52 Issue #10255: Fix reference leak in Py_InitializeEx(). Patch by Neil by Antoine Pitrou · 14 years ago
  87. cf9f980 Issue #10372: Import the warnings module only after the IO library is by Antoine Pitrou · 14 years ago
  88. 3d89751 Merged revisions 85980 via svnmerge from by Hirokazu Yamamoto · 14 years ago
  89. daf83ac Issue #10157: Fixed refleaks in pythonrun.c. Patch by Stefan Krah. by Hirokazu Yamamoto · 14 years ago
  90. c8850d0 Merged revisions 85817,85904 via svnmerge from by Benjamin Peterson · 14 years ago
  91. a95e977 decrement offset when it points to a newline (#10186 followup) by Benjamin Peterson · 14 years ago
  92. d4519c1 tighten loop by Benjamin Peterson · 14 years ago
  93. 9831611 Merged revisions 85814 via svnmerge from by Benjamin Peterson · 14 years ago
  94. 503d6c5 remove broken code accounting an offset the size of the line #10186 by Benjamin Peterson · 14 years ago
  95. 3aa6cea Issue #10077: Fix logging of site module errors at startup. by Victor Stinner · 14 years ago
  96. 15244f7 Recorded merge of revisions 85569-85570 via svnmerge from by Victor Stinner · 14 years ago
  97. e474309 initfsencoding(): get_codeset() failure is now a fatal error by Victor Stinner · 14 years ago
  98. 49d3f25 _PyImport_FixupExtension() and _PyImport_FindExtension() uses FS encoding by Victor Stinner · 14 years ago
  99. 2f2ed1f Fix ast_error_finish() and err_input(): filename can be NULL by Victor Stinner · 14 years ago
  100. 4c7c8c3 Issue #9713, #10114: Parser functions (eg. PyParser_ASTFromFile) expects by Victor Stinner · 14 years ago