1. e2135c6 move definition to top of block by Benjamin Peterson · 11 years ago
  2. 1e93b06 complain about "global __class__" in a class body (closes #17983) by Benjamin Peterson · 11 years ago
  3. e1b4cbc when arguments are cells clear the locals slot (backport of #17927) by Benjamin Peterson · 11 years ago
  4. fd417cc Fix crash caused by 8c1385205a35 (thanks Arfrever for reporting). by Antoine Pitrou · 11 years ago
  5. 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
  6. fe1b22a ignore errors when trying to fetch sys.stdin.encoding (closes #17863) by Benjamin Peterson · 11 years ago
  7. 7d11004 raise an ImportError (rather than fatal) when __import__ is not found in __builtins__ (closes #17867) by Benjamin Peterson · 11 years ago
  8. 3583761 #17413: make sure settrace funcs get passed exception instances for 'value'. by R David Murray · 11 years ago
  9. 1b6424f Fix indentation. by Ezio Melotti · 11 years ago
  10. 278d03b Revert a premature patch for issue #14010 (changeset aaaf36026511). by Serhiy Storchaka · 11 years ago
  11. 55bff89 Issue #17645: convert an assert() into a proper exception in _Py_Mangle(). by Antoine Pitrou · 11 years ago
  12. e8f706e Issue #14010: Fix a crash when iterating or deleting deeply nested filters by Serhiy Storchaka · 11 years ago
  13. 614c578 Issue #17619: Make input() check for Ctrl-C correctly on Windows. by Richard Oudkerk · 11 years ago
  14. f8ffec0 Issue #17357: Add missing verbosity messages when running under by Brett Cannon · 11 years ago
  15. b803c6c Fixes issue4653 - Correctly specify the buffer size to FormatMessageW and by Gregory P. Smith · 11 years ago
  16. dc32d18 Issue #15038 : Fixing the condition broadcast and docs. by Kristján Valur Jónsson · 11 years ago
  17. 795c10b Rebuild importlib.h after the changes introduced in 0f65bf6063ca. by Ezio Melotti · 12 years ago
  18. 293ab97 #17178: merge with 3.2. by Ezio Melotti · 12 years ago
  19. b19ed57 #17178: update any()/all() docstrings to document their behavior with empty iterables. Patch by Ankur Ankan. by Ezio Melotti · 12 years ago
  20. 5a1f152 Issue #5308: Raise ValueError when marshalling too large object (a sequence by Serhiy Storchaka · 12 years ago
  21. 7e01911 Issue #5308: Raise ValueError when marshalling too large object (a sequence by Serhiy Storchaka · 12 years ago
  22. 801d955 Issue #12983: Bytes literals with invalid \x escape now raise a SyntaxError by Serhiy Storchaka · 12 years ago
  23. 5e61f14 Issue #12983: Bytes literals with invalid \x escape now raise a SyntaxError by Serhiy Storchaka · 12 years ago
  24. c73c561 Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in the interpreter. by Antoine Pitrou · 12 years ago
  25. 4de7457 Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in the interpreter. by Antoine Pitrou · 12 years ago
  26. da9cf0e Issue #17098: Be more stringent of setting __loader__ on early imported by Brett Cannon · 12 years ago
  27. 0ecd30b Issue #17098: Make sure every module has __loader__ defined. by Brett Cannon · 12 years ago
  28. c71741f remove unnecessary clearing of list by Benjamin Peterson · 12 years ago
  29. a9976b3 Issue #16730: Don't raise an exception in by Brett Cannon · 12 years ago
  30. 7ae320d (Merge 3.2) Issue #16455: On FreeBSD and Solaris, if the locale is C, the by Victor Stinner · 12 years ago
  31. 20b654a Issue #16455: On FreeBSD and Solaris, if the locale is C, the by Victor Stinner · 12 years ago
  32. 198399d bring Python into 2013 by Benjamin Peterson · 12 years ago
  33. 202b606 Add sanity assertions in some import lock code (issue #15599). by Antoine Pitrou · 12 years ago
  34. 41a234a Issue #16416: Fix compilation error by Victor Stinner · 12 years ago
  35. 2660e42 (Merge 3.2) Issue #16416: On Mac OS X, operating system data are now always by Victor Stinner · 12 years ago
  36. 27b1ca2 Issue #16416: On Mac OS X, operating system data are now always by Victor Stinner · 12 years ago
  37. 17485bf Issue #16588: Silence unused-but-set warnings in Python/thread_pthread.h by Christian Heimes · 12 years ago
  38. 56379c0 Issue #16588: Silence unused-but-set warnings in Python/thread_pthread.h by Christian Heimes · 12 years ago
  39. ded35ae Issue #16546: make ast.YieldFrom argument mandatory. by Mark Dickinson · 12 years ago
  40. 8a6d1fe #16306: merge with 3.2. by Ezio Melotti · 12 years ago
  41. a0dd22e #16306: report only the first unknown option and add more tests. Patch by Serhiy Storchaka. by Ezio Melotti · 12 years ago
  42. 3c76aa6 Remove unused variabile "plain" in builtin_exec. by Ezio Melotti · 12 years ago
  43. 82c1c78 - Issue #16514: Fix regression causing a traceback when sys.path[0] is None by Barry Warsaw · 12 years ago
  44. f7c709d #16306: merge with 3.2. by Ezio Melotti · 12 years ago
  45. 7c66319 #16306: Fix multiple error messages when unknown command line parameters where passed to the interpreter. Patch by Hieu Nguyen. by Ezio Melotti · 12 years ago
  46. 2a0e226 recompile importlib.h by Benjamin Peterson · 12 years ago
  47. 6df5cae Issue #15835: Define PATH_MAX on HP-UX. by Stefan Krah · 12 years ago
  48. 33363f4 Issue #15001: fix segfault on "del sys.module['__main__']" by Hynek Schlawack · 12 years ago
  49. 5c6b3e2 Issue #15001: fix segfault on "del sys.module['__main__']" by Hynek Schlawack · 12 years ago
  50. 6c5f521 #5057: the peepholer no longer optimizes subscription on unicode literals (e.g. u"foo"[0]) in order to produce compatible pyc files between narrow and wide builds. by Ezio Melotti · 12 years ago
  51. aab9c2b Issue #5765: Apply a hard recursion limit in the compiler by Nick Coghlan · 12 years ago
  52. a0b5c46 #16336: merge with 3.2. by Ezio Melotti · 12 years ago
  53. 540da76 #16336: fix input checking in the surrogatepass error handler. Patch by Serhiy Storchaka. by Ezio Melotti · 12 years ago
  54. 90c0eb2 Issue #16218: Support non ascii characters in python launcher. by Andrew Svetlov · 12 years ago
  55. e132f52 check return value of _PyUnicode_AsString by Benjamin Peterson · 12 years ago
  56. 5f9459f merge with 3.2 by Philip Jenvey · 12 years ago
  57. 45c4149 bounds check for bad data (thanks amaury) by Philip Jenvey · 12 years ago
  58. 557c76c Fix compilation on Windows by Nick Coghlan · 12 years ago
  59. eb8d627 Issue #6074: Apply an appropriate fix for importlib based imports by Nick Coghlan · 12 years ago
  60. 34937ce Issue #6074: Forward port Windows read-only source file fix from 2.7 by Nick Coghlan · 12 years ago
  61. d783c8e Issue #15833: don't raise an exception if importlib can't write byte-compiled by Trent Nelson · 12 years ago
  62. a6ce4fd Closes issue #15111: Calling __import__ with a module specified in by Brett Cannon · 12 years ago
  63. 8ed677d Add some comments. by Brett Cannon · 12 years ago
  64. feaa54f don't depend on __debug__ because it's baked in at freeze time (issue #16046) by Benjamin Peterson · 12 years ago
  65. ca8aa4a Issue #15144: Fix possible integer overflow when handling pointers as integer values, by using Py_uintptr_t instead of size_t. by Antoine Pitrou · 12 years ago
  66. 10ca1fe Cleanup 'k' when the creation of PySTEntryObject fails. ad3824a90261 used to decref 'k' in too many error cases. by Christian Heimes · 12 years ago
  67. 55ad651 Cleanup 'k' when the creation of PySTEntryObject fails. ad3824a90261 used to decref 'k' in too many error cases. by Christian Heimes · 12 years ago
  68. 9c5b521 Partly revert ad3824a90261 and add comment about reference ownership by Christian Heimes · 12 years ago
  69. 1526582 Partly revert ad3824a90261 and add comment about reference ownership by Christian Heimes · 12 years ago
  70. e9a6d62 Fix null pointer dereferencing in structmember.c PyMember_SetOne() for T_CHAR. _PyUnicode_AsStringAndSize() can return NULL without touching the len argument. Also remove unnecessary PyUnicode_Check(), _PyUnicode_AsStringAndSize() performance the test again. CID 486815 by Christian Heimes · 12 years ago
  71. 5557a9c Fix null pointer dereferencing in structmember.c PyMember_SetOne() for T_CHAR. _PyUnicode_AsStringAndSize() can return NULL without touching the len argument. Also remove unnecessary PyUnicode_Check(), _PyUnicode_AsStringAndSize() performance the test again. CID 486815 by Christian Heimes · 12 years ago
  72. 6d29352 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
  73. 6a77af6 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
  74. 10e85de Fixed memory leak in error branch of parsestrplus. CID 715374 Variable s going out of scope leaks the storage it points to. by Christian Heimes · 12 years ago
  75. 3d46339 Fixed memory leak in error branch of parsestrplus. CID 715374 Variable s going out of scope leaks the storage it points to. by Christian Heimes · 12 years ago
  76. 879329d Added missing va_end in error branch of PyArg_UnpackTuple(). CID 486641 by Christian Heimes · 12 years ago
  77. 48d8d21 Added missing va_end in error branch of PyArg_UnpackTuple(). CID 486641 by Christian Heimes · 12 years ago
  78. 310f814 Closed reference leak of variable 'k' in function ste_new which wasn't decrefed in error cases by Christian Heimes · 12 years ago
  79. 837e53a Closed reference leak of variable 'k' in function ste_new which wasn't decrefed in error cases by Christian Heimes · 12 years ago
  80. 8c195af Issue #15340: Fix importing the random module when /dev/urandom cannot be opened. by Antoine Pitrou · 12 years ago
  81. 7ff1822 Issue #15340: Fix importing the random module when /dev/urandom cannot be opened. by Antoine Pitrou · 12 years ago
  82. d9c1bf7 After the jump in line 1051 unicode_tmp is NULL. Found by Coverity. by Stefan Krah · 12 years ago
  83. 5b4faae Issue #13992: The trashcan mechanism is now thread-safe. This eliminates by Antoine Pitrou · 12 years ago
  84. 56cd62c Issue #13992: The trashcan mechanism is now thread-safe. This eliminates by Antoine Pitrou · 12 years ago
  85. d40528f merge 3.2 by Benjamin Peterson · 12 years ago
  86. c7dedb0 put * in the normal place by Benjamin Peterson · 12 years ago
  87. bd0df50 get rid of ast_error_finish by passing the compiling struct to ast_error by Benjamin Peterson · 12 years ago
  88. e9f72db merge 3.2 by Benjamin Peterson · 12 years ago
  89. c5d7518 move variable decl to the top of the function by Benjamin Peterson · 12 years ago
  90. c7f447c merge 3.2 (#15846) by Benjamin Peterson · 12 years ago
  91. 2e2c903 prevert ast errors from being normalized before ast_error_finish is called (closes #15846) by Benjamin Peterson · 12 years ago
  92. 4f0338c Issue #15781: Fix two small race conditions in import's module locking. by Antoine Pitrou · 12 years ago
  93. 12c6bda Issue #15316: Let exceptions raised during imports triggered by the by Brett Cannon · 12 years ago
  94. ba0a3ed Issue #2051: Tweak last commit for this issue to pass in mode instead by Brett Cannon · 12 years ago
  95. a508770 Close #2501: Permission bits are once again correctly copied from the source file to the cached bytecode file. Test by Eric Snow. by Nick Coghlan · 12 years ago
  96. ad54c6d Issue #15766: Fix a crash in imp.load_dynamic() on PyUnicode_FromString() failure by Victor Stinner · 12 years ago
  97. 35503c9 Issue #15726: Fix incorrect bounds checking in PyState_FindModule. by Antoine Pitrou · 12 years ago
  98. 75506e8 Issue #15726: Fix incorrect bounds checking in PyState_FindModule. by Antoine Pitrou · 12 years ago
  99. 66d1eb2 Merge 3.2. by Stefan Krah · 12 years ago
  100. 07795df Issue #15741: Fix potential NULL dereference. Found by Coverity. by Stefan Krah · 12 years ago