1. 214a7d2 properly lookup the __round__ special method (closes #17722) by Benjamin Peterson · 11 years ago
  2. e9bbe8b Issue #15480: Remove the deprecated and unused TYPE_INT64 code from marshal. by Antoine Pitrou · 11 years ago
  3. 100883f Issue #17093,17566,17567: Methods from classes in importlib.abc now raise/return by Brett Cannon · 11 years ago
  4. ee57f15 Revert a premature patch for issue #14010 (changeset 846bd418aee5). by Serhiy Storchaka · 11 years ago
  5. 278d03b Revert a premature patch for issue #14010 (changeset aaaf36026511). by Serhiy Storchaka · 11 years ago
  6. 7d8c29a Issue #17645: convert an assert() into a proper exception in _Py_Mangle(). by Antoine Pitrou · 11 years ago
  7. 55bff89 Issue #17645: convert an assert() into a proper exception in _Py_Mangle(). by Antoine Pitrou · 11 years ago
  8. aac81e2 Issue #14010: Fix a crash when iterating or deleting deeply nested filters by Serhiy Storchaka · 11 years ago
  9. e8f706e Issue #14010: Fix a crash when iterating or deleting deeply nested filters by Serhiy Storchaka · 11 years ago
  10. eea1f5c Merge by Richard Oudkerk · 11 years ago
  11. 614c578 Issue #17619: Make input() check for Ctrl-C correctly on Windows. by Richard Oudkerk · 11 years ago
  12. eb4b5ac Close #16757: Avoid calling the expensive _PyUnicode_FindMaxChar() function by Victor Stinner · 11 years ago
  13. daf4daa merge by Brett Cannon · 11 years ago
  14. f8ffec0 Issue #17357: Add missing verbosity messages when running under by Brett Cannon · 11 years ago
  15. d0924b3 update importlib.h by Benjamin Peterson · 11 years ago
  16. 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
  17. d6f1d16 Fixes issue4653 - Correctly specify the buffer size to FormatMessageW and by Gregory P. Smith · 11 years ago
  18. b803c6c Fixes issue4653 - Correctly specify the buffer size to FormatMessageW and by Gregory P. Smith · 11 years ago
  19. 684cd0e Issue #17522: Add the PyGILState_Check() API. by Kristján Valur Jónsson · 11 years ago
  20. 440282b copy 2.7 magic numbers for historical interest by Benjamin Peterson · 11 years ago
  21. 6168362 Issue #16475 : Correctly handle the EOF when reading marshal streams. by Kristján Valur Jónsson · 11 years ago
  22. e178187 Issue #16475: Simplify the interface to r_ref_allocate and improve comments. by Kristján Valur Jónsson · 11 years ago
  23. eddb0a7 fix compiler warning by Benjamin Peterson · 11 years ago
  24. 605a774 Backed out changeset 521232b05b97 by Benjamin Peterson · 11 years ago
  25. c6dc124 fix compiler warning by Benjamin Peterson · 11 years ago
  26. dc32d18 Issue #15038 : Fixing the condition broadcast and docs. by Kristján Valur Jónsson · 11 years ago
  27. 32eccca Issue #15038 : Fixing the condition broadcast and docs. by Kristján Valur Jónsson · 11 years ago
  28. d7009c6 Issue #16475: Support object instancing, recursion and interned strings by Kristján Valur Jónsson · 11 years ago
  29. 3a61943 bump Python-ast.c by Benjamin Peterson · 11 years ago
  30. b72406b refactor to fix refleaks by Benjamin Peterson · 11 years ago
  31. 6fba3db sprinkle const by Benjamin Peterson · 11 years ago
  32. aad1d87 move declaration to top of block by Benjamin Peterson · 11 years ago
  33. cda75be unify some ast.argument's attrs; change Attribute column offset (closes #16795) by Benjamin Peterson · 11 years ago
  34. aa14dc3 C89 compliance by Benjamin Peterson · 11 years ago
  35. 2d6acd2 reject non-docs strings between future imports (closes #17434) by Benjamin Peterson · 11 years ago
  36. 7701e6e make some freezing related stuff const by Benjamin Peterson · 11 years ago
  37. 4802bec Issue #17117: Have both import itself and importlib.util.set_loader() by Brett Cannon · 11 years ago
  38. 04a2955 #17032: The "global" in the "NameError: global name 'x' is not defined" error message has been removed. Patch by Ram Rachum. by Ezio Melotti · 11 years ago
  39. c190389 Issue #17220: two fixes for changeset 2528e4aea338. by Brett Cannon · 11 years ago
  40. 39e47f9 Issue #17220: Little cleanup of _bootstrap.py. by Serhiy Storchaka · 11 years ago
  41. 92bd4ef Merge importlib.h rebuild from 3.3 after the changes introduced in 65eaac000147. by Ezio Melotti · 11 years ago
  42. 795c10b Rebuild importlib.h after the changes introduced in 0f65bf6063ca. by Ezio Melotti · 11 years ago
  43. 7056cb2 Issue #17170: speed up PyArg_ParseTuple[AndKeywords] a bit. by Antoine Pitrou · 11 years ago
  44. 178e6fe #17178: merge with 3.3. by Ezio Melotti · 11 years ago
  45. 293ab97 #17178: merge with 3.2. by Ezio Melotti · 11 years ago
  46. b19ed57 #17178: update any()/all() docstrings to document their behavior with empty iterables. Patch by Ankur Ankan. by Ezio Melotti · 11 years ago
  47. 0c15b5d Issue #5308: Raise ValueError when marshalling too large object (a sequence by Serhiy Storchaka · 11 years ago
  48. 5a1f152 Issue #5308: Raise ValueError when marshalling too large object (a sequence by Serhiy Storchaka · 11 years ago
  49. 7e01911 Issue #5308: Raise ValueError when marshalling too large object (a sequence by Serhiy Storchaka · 11 years ago
  50. b8cbba5 Issue #12983: Bytes literals with invalid \x escape now raise a SyntaxError by Serhiy Storchaka · 11 years ago
  51. 801d955 Issue #12983: Bytes literals with invalid \x escape now raise a SyntaxError by Serhiy Storchaka · 11 years ago
  52. 5e61f14 Issue #12983: Bytes literals with invalid \x escape now raise a SyntaxError by Serhiy Storchaka · 11 years ago
  53. 419d9a8 evaluate lambda keyword-only defaults after positional defaults (#16967 again) by Benjamin Peterson · 11 years ago
  54. 1ef876c evaluate positional defaults before keyword-only defaults (closes #16967) by Benjamin Peterson · 11 years ago
  55. 8ad5b07 Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in the interpreter. by Antoine Pitrou · 11 years ago
  56. c73c561 Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in the interpreter. by Antoine Pitrou · 11 years ago
  57. 4de7457 Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in the interpreter. by Antoine Pitrou · 11 years ago
  58. 85ae356 Merge w/ 3.3 more fixes thanks to issue #17098 by Brett Cannon · 11 years ago
  59. da9cf0e Issue #17098: Be more stringent of setting __loader__ on early imported by Brett Cannon · 11 years ago
  60. 0ecd30b Issue #17098: Make sure every module has __loader__ defined. by Brett Cannon · 11 years ago
  61. f3220d6 Tweak an exception message by Brett Cannon · 11 years ago
  62. 14581d5 Port py_compile over to importlib by Brett Cannon · 11 years ago
  63. 686e880 Touch up exception messaging by Brett Cannon · 11 years ago
  64. b26a9b1 Replace WaitForSingleObject with WaitForSingleObjectEx, by Martin v. Löwis · 11 years ago
  65. 3f50bf6 Drop support for Windows 2000; allow any XP API (but not Vista+). by Martin v. Löwis · 11 years ago
  66. 51f4616 revert #16672 for incorrect semantics by Benjamin Peterson · 11 years ago
  67. f0472f6 merge 3.3 by Benjamin Peterson · 11 years ago
  68. c71741f remove unnecessary clearing of list by Benjamin Peterson · 11 years ago
  69. 215c49a thinko by Philip Jenvey · 11 years ago
  70. 569ff4f Issue #15031: Refactor some code in importlib pertaining to validating by Brett Cannon · 11 years ago
  71. c57f9f9 Merge from 3.3 for fix for issue #16730 by Brett Cannon · 11 years ago
  72. a9976b3 Issue #16730: Don't raise an exception in by Brett Cannon · 11 years ago
  73. 7ae320d (Merge 3.2) Issue #16455: On FreeBSD and Solaris, if the locale is C, the by Victor Stinner · 11 years ago
  74. 20b654a Issue #16455: On FreeBSD and Solaris, if the locale is C, the by Victor Stinner · 11 years ago
  75. ae2039e merge 3.3 by Benjamin Peterson · 12 years ago
  76. 198399d bring Python into 2013 by Benjamin Peterson · 12 years ago
  77. f7a17b4 Replace IOError with OSError (#16715) by Andrew Svetlov · 12 years ago
  78. 3ba3a3e Issue #15422: get rid of PyCFunction_New macro by Andrew Svetlov · 12 years ago
  79. 6f0c94d improve tracing performance when f_trace is NULL (closes #16672) by Benjamin Peterson · 12 years ago
  80. fc8f5c5 update importlib.h by Benjamin Peterson · 12 years ago
  81. 2606a6f Issue #16719: Get rid of WindowsError. Use OSError instead by Andrew Svetlov · 12 years ago
  82. ad8c461 Add sanity assertions in some import lock code (issue #15599). by Antoine Pitrou · 12 years ago
  83. 202b606 Add sanity assertions in some import lock code (issue #15599). by Antoine Pitrou · 12 years ago
  84. ad28c7f Issue #16706: get rid of os.error by Andrew Svetlov · 12 years ago
  85. 9272279 use error label instead of breaking eval loop (closes #16693) by Benjamin Peterson · 12 years ago
  86. 5cb8a31 cleanup and fix refleaks by Benjamin Peterson · 12 years ago
  87. 6b2cbeb Issue #16421: allow to load multiple modules from the same shared object. by Andrew Svetlov · 12 years ago
  88. f76f0ee compile doesn't accept code objects by Philip Jenvey · 12 years ago
  89. f9d0b12 Issue #13390: New function :func:`sys.getallocatedblocks()` returns the number of memory blocks currently allocated. by Antoine Pitrou · 12 years ago
  90. 70b224d assert than we never try to deal with True, False, or None as a name by Benjamin Peterson · 12 years ago
  91. 442f209 create NameConstant AST class for None, True, and False literals (closes #16619) by Benjamin Peterson · 12 years ago
  92. a6cfb28 Issue #15627: This is simply an update to the name of a new method recently added by Eric Snow · 12 years ago
  93. d45c7f8 Issue #16455: On FreeBSD and Solaris, if the locale is C, the by Victor Stinner · 12 years ago
  94. 41a234a Issue #16416: Fix compilation error by Victor Stinner · 12 years ago
  95. 2660e42 (Merge 3.2) Issue #16416: On Mac OS X, operating system data are now always by Victor Stinner · 12 years ago
  96. 27b1ca2 Issue #16416: On Mac OS X, operating system data are now always by Victor Stinner · 12 years ago
  97. 4569467 Issue #16588: Silence unused-but-set warnings in Python/thread_pthread.h by Christian Heimes · 12 years ago
  98. 17485bf Issue #16588: Silence unused-but-set warnings in Python/thread_pthread.h by Christian Heimes · 12 years ago
  99. 56379c0 Issue #16588: Silence unused-but-set warnings in Python/thread_pthread.h by Christian Heimes · 12 years ago
  100. 073f067 Issue #16546: merge fix from 3.3 by Mark Dickinson · 12 years ago