1. d67bd45 Issue #19512: Add _PySys_GetObjectId() and _PySys_SetObjectId() functions by Victor Stinner · 11 years ago
  2. b44562b Issue #19512: eval() and exec() now use an identifier for "__builtins__" string by Victor Stinner · 11 years ago
  3. 95701bd Issue #19512: Add PyRun_InteractiveOneObject() function by Victor Stinner · 11 years ago
  4. 4ee41c5 Issue #19512: _print_total_refs() now uses an identifier to get "showrefcount" by Victor Stinner · 11 years ago
  5. d02fbb8 Issue #19512: sys_displayhook() now uses an identifier for "builtins" by Victor Stinner · 11 years ago
  6. 98e818b Issue #19437: Fix compiler_class(), handle compiler_lookup_arg() failure by Victor Stinner · 11 years ago
  7. 2b8fc30 Abstract out stat calls in importlib for easier experimentation. by Brett Cannon · 11 years ago
  8. f6901c8 Issue #19410: Put back in special-casing of '' for by Brett Cannon · 11 years ago
  9. cdf6012 Issue #19413: Restore pre-3.3 reload() semantics of re-finding modules. by Eric Snow · 11 years ago
  10. dcdd05b Close #19442: warn_explicit() does nothing when called late during Python shutdown by Victor Stinner · 11 years ago
  11. 359fabc Issue #19437: Cleanup r_ref() of the marshal module by Victor Stinner · 11 years ago
  12. d5cae6f Issue #19437: Fix r_object() of marshal module, handle PyDict_SetItem() failure by Victor Stinner · 11 years ago
  13. b1b7b18 Issue #19437: Fix r_object() of marshal module, handle r_byte() failure for by Victor Stinner · 11 years ago
  14. 763b0d1 Issue #19437: Fix r_PyLong() of marshal module, stop immediatly at first by Victor Stinner · 11 years ago
  15. ae233ea Issue #19437: Fix show_warning() of _warnings, stop at the first error to not by Victor Stinner · 11 years ago
  16. 3cd04aa Issue #19437: Fix get_filter() from _warnings, don't call PyObject_IsSubclass() by Victor Stinner · 11 years ago
  17. 472805d merge 3.3 by Benjamin Peterson · 11 years ago
  18. 7f69dca make string literal const by Benjamin Peterson · 11 years ago
  19. 96c03df merge 3.3 by Benjamin Peterson · 11 years ago
  20. 8f16948 update comment by Benjamin Peterson · 11 years ago
  21. 856f45f Issue #19442: Fix warnings emitted during Python shutdown by Victor Stinner · 11 years ago
  22. a4c704b Issue #19424: Fix the warnings module to accept filename containing surrogate by Victor Stinner · 11 years ago
  23. 41bb43a Issue #18408: Add a new PyFrame_FastToLocalsWithError() function to handle by Victor Stinner · 11 years ago
  24. ce5f4fb Issue #19421: fix a check in warnings.warn() to be able to use it during Python by Victor Stinner · 11 years ago
  25. 8fea252 Issue #18520: fix reference leak in _PySys_Init() by Victor Stinner · 11 years ago
  26. efa4867 Issue #18603: Ensure that PyOS_mystricmp and PyOS_mystrnicmp are in the by Christian Heimes · 11 years ago
  27. 49e6180 Issue #18603: Ensure that PyOS_mystricmp and PyOS_mystrnicmp are in the by Christian Heimes · 11 years ago
  28. 7be5d7d Issue 19306: Add extra hints to faulthandler stack dumps that they are upside down. by Guido van Rossum · 11 years ago
  29. 6b4f780 cleanup the construction of __qualname__ (closes #19301 again) by Benjamin Peterson · 11 years ago
  30. 6de9200 Close #19313: remove no longer needed Py_XINCREF by Nick Coghlan · 11 years ago
  31. 34d33a5 removal u_qualname, since compiler_scope_qualname is only ever called once by Benjamin Peterson · 11 years ago
  32. a8a38b8 strengthen condition and add assertion by Benjamin Peterson · 11 years ago
  33. 3d9e481 give explicitly global functions and classes a global __qualname__ (closes #19301) by Benjamin Peterson · 11 years ago
  34. c679227 Issue #1772673: The type of `char*` arguments now changed to `const char*`. by Serhiy Storchaka · 11 years ago
  35. 58f5680 Issue #18810: Be optimistic with stat calls when seeing if a directory by Brett Cannon · 11 years ago
  36. bb9e481 Issue #18416: Fix various os calls in importlib.machinery.FileFinder by Brett Cannon · 11 years ago
  37. 27e27f7 Issue #18416: Have importlib.machinery.PathFinder treat '' as the cwd by Brett Cannon · 11 years ago
  38. 1805a62 Issue #16129: Py_SetStandardStreamEncoding cleanups by Nick Coghlan · 11 years ago
  39. 7d270ee Issue #16129: Add `Py_SetStandardStreamEncoding` by Nick Coghlan · 11 years ago
  40. 42c25f5 Close #19260: remove outdated comment in marshal.c by Antoine Pitrou · 11 years ago
  41. 142ad66 Re #18521: move array bounds check before array access. by Georg Brandl · 11 years ago
  42. 6083a4b Re #18521: remove assignments of variables that are immediately reassigned. by Georg Brandl · 11 years ago
  43. 6039db8 Issue #18776: atexit callbacks now display their full traceback when they raise an exception. by Antoine Pitrou · 11 years ago
  44. 24201d4 Issue #18776: atexit callbacks now display their full traceback when they raise an exception. by Antoine Pitrou · 11 years ago
  45. 0a7697b Catch a few extra error cases in marshal.c by Kristján Valur Jónsson · 11 years ago
  46. 5983258 Issue #19219 Remove a lot of "retval = NULL" statements, now that retval by Kristján Valur Jónsson · 11 years ago
  47. 3572842 Issue #19219: retval may be used uninitialized value by Christian Heimes · 11 years ago
  48. b30f271 Try to fix weird assertion error on the Fedora buildbot. by Antoine Pitrou · 11 years ago
  49. d01d396e Issue #4555: All exported C symbols are now prefixed with either "Py" or "_Py". by Antoine Pitrou · 11 years ago
  50. 409b538 Don't export internal symbols ("make smelly") by Antoine Pitrou · 11 years ago
  51. 1164dfc Issue #19219: Speed up marshal.loads(), and make pyc files slightly (5% to 10%) smaller. by Antoine Pitrou · 11 years ago
  52. 8d19767 Close #19199: Remove ``PyThreadState.tick_counter`` field by Victor Stinner · 11 years ago
  53. 1cfa0ba Fix macro expansion of _PyErr_OCCURRED(), and make sure to use it in at least one place so as to avoid regressions. by Antoine Pitrou · 11 years ago
  54. 59c900d Fix macro expansion of _PyErr_OCCURRED(), and make sure to use it in at least one place so as to avoid regressions. by Antoine Pitrou · 11 years ago
  55. af1edb7 merge with 3.3 by Georg Brandl · 11 years ago
  56. c6a2c9b Closes #15213: update comment for _PyOS_URandom by Georg Brandl · 11 years ago
  57. 5c4b4c5 [issue19152] Revert 832579dbafd6. by Eric Snow · 11 years ago
  58. af8566c [issue19152] Add ExtensionFileLoader.get_filename(). by Eric Snow · 11 years ago
  59. 5179445 [issue19152] Add ExtensionFileLoader.get_filename(). by Eric Snow · 11 years ago
  60. efbc475 [issue19151] Fix docstring and use of _get_suppported_file_loaders() to reflect 2-tuples. by Eric Snow · 11 years ago
  61. e8bbfeb [issue19951] Fix docstring and use of _get_suppported_file_loaders() to reflect 2-tuples. by Eric Snow · 11 years ago
  62. c30d058 merge 3.3 (#19098) by Benjamin Peterson · 11 years ago
  63. 305e5aa don't scale compiler stack frames if the recursion limit is huge (closes #19098) by Benjamin Peterson · 11 years ago
  64. bf28d2d Issue #18818: The "encodingname" part of PYTHONIOENCODING is now optional. by Serhiy Storchaka · 11 years ago
  65. 7b47699 Issue #18808: Thread.join() now waits for the underlying thread state to be destroyed before returning. by Antoine Pitrou · 11 years ago
  66. b034eee Close #18954: Fix some typo in fileutils.c comments by Victor Stinner · 11 years ago
  67. 3c56145 Issue #16826: Revert fix while Windows issues are being worked out. by Meador Inge · 11 years ago
  68. c9e1dcd Issue #16826: Revert fix while Windows issues are being worked out. by Meador Inge · 11 years ago
  69. 9ab358a Issue #16826: Don't check for PYTHONCASEOK when using -E. by Meador Inge · 11 years ago
  70. d151da9 Issue #16826: Don't check for PYTHONCASEOK when using -E. by Meador Inge · 11 years ago
  71. 69492da Factor-out the common code for setting a KeyError. by Raymond Hettinger · 11 years ago
  72. 4879a96 Issue #18756: os.urandom() now uses a lazily-opened persistent file descriptor, so as to avoid using many file descriptors when run in parallel from multiple threads. by Antoine Pitrou · 11 years ago
  73. 55a1220 pythonrun.c: use MAXPATHLEN instead of PATH_MAX by Victor Stinner · 11 years ago
  74. daf4555 Issue #18571: Implementation of the PEP 446: file descriptors and file handles by Victor Stinner · 11 years ago
  75. 46e1ce2 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  76. 9594942 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  77. 14e461d Close #11619: The parser and the import machinery do not encode Unicode by Victor Stinner · 11 years ago
  78. c82bfd8 Issue #18664, #18408: Rewrite PyErr_WriteUnraisable() to handle errors by Victor Stinner · 11 years ago
  79. 0e1e043 #18839: merge with 3.3. by Ezio Melotti · 11 years ago
  80. 4af4d27 #18839: document that sys.exit() will not accept a non-integer numeric value as exit status. by Ezio Melotti · 11 years ago
  81. 7eaf3f7 Issue #18808: Non-daemon threads are now automatically joined when a sub-interpreter is shutdown (it would previously dump a fatal error). by Antoine Pitrou · 11 years ago
  82. 3a7dffa remove support for compiling on systems without getcwd() by Benjamin Peterson · 11 years ago
  83. cba2e3c remove unused declaration by Victor Stinner · 11 years ago
  84. 01a513b Remove last bit of GNU pth thread by Christian Heimes · 11 years ago
  85. 95b2146 Issue #18756: Improve error reporting in os.urandom() when the failure is due to something else than /dev/urandom not existing. by Antoine Pitrou · 11 years ago
  86. ec34ab5 Issue #18756: Improve error reporting in os.urandom() when the failure is due to something else than /dev/urandom not existing. by Antoine Pitrou · 11 years ago
  87. 9ed5f27 Issue #18722: Remove uses of the "register" keyword in C code. by Antoine Pitrou · 11 years ago
  88. 40322e6 Issue #10241: Clear extension module dict copies at interpreter shutdown. by Antoine Pitrou · 11 years ago
  89. ad73a9c Issue #16400: Add command line option for isolated mode. by Christian Heimes · 11 years ago
  90. 79ba388 Improve verbose reporting of shutdown phase by using the "public" module name by Antoine Pitrou · 11 years ago
  91. 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
  92. 95db2e7 Backout 62658d9d8926 (issue #10241): it causes a crash at shutdown when deallocating a Tkapp object. by Antoine Pitrou · 11 years ago
  93. 84f31a5 Issue #10241: Clear extension module dict copies at interpreter shutdown. by Antoine Pitrou · 11 years ago
  94. dcedaf6 Issue #18214: Improve finalization of Python modules to avoid setting their globals to None, in most cases. by Antoine Pitrou · 11 years ago
  95. 32d483c Fix style by Antoine Pitrou · 11 years ago
  96. c588fee Issue #15893: Improve error handling in main() and Py_FrozenMain() by Victor Stinner · 11 years ago
  97. 739cf4e Py_FrozenMain() now uses _Py_char2wchar() to decode command line arguments, as by Victor Stinner · 11 years ago
  98. b5245be Issue #18203: Replace PyMem_Malloc() with PyMem_RawMalloc() at Python initialization by Victor Stinner · 11 years ago
  99. 597696c (Merge 3.3) Issue #15893: frozenmain.c now handles PyMem_Malloc() failure by Victor Stinner · 11 years ago
  100. 36577e4 Issue #15893: frozenmain.c now handles PyMem_Malloc() failure by Victor Stinner · 11 years ago