1. 8cc80f1 Merge 3.4 by Victor Stinner · 9 years ago
  2. 579db16 Closes #23247: Fix a crash in the StreamWriter.reset() of CJK codecs by Victor Stinner · 9 years ago
  3. 02eae6b Issue #18684: Fixed reading out of the buffer in the re module. by Serhiy Storchaka · 9 years ago
  4. 03d6ee3 Issue #18684: Fixed reading out of the buffer in the re module. by Serhiy Storchaka · 9 years ago
  5. f488fb4 Issue #19235: Add new RecursionError exception. Patch by Georg Brandl. by Yury Selivanov · 9 years ago
  6. 42e913a merge 3.4 (#24552) by Benjamin Peterson · 9 years ago
  7. 80f78a3 fix use after free (closes #24552) by Benjamin Peterson · 9 years ago
  8. 4a01cab Issue #19176: Fixed doctype() related bugs in C implementation of ElementTree. by Serhiy Storchaka · 9 years ago
  9. 05744ac Issue #19176: Fixed doctype() related bugs in C implementation of ElementTree. by Serhiy Storchaka · 9 years ago
  10. b9b9e7b Issue #24456: Fixed possible buffer over-read in adpcm2lin() and lin2adpcm() by Serhiy Storchaka · 9 years ago
  11. 449e2be Issue #24456: Fixed possible buffer over-read in adpcm2lin() and lin2adpcm() by Serhiy Storchaka · 9 years ago
  12. 4801383 upgrade to Unicode 8.0.0 by Benjamin Peterson · 9 years ago
  13. 7b78d43 prevent integer overflow in escape_unicode (closes #24522) by Benjamin Peterson · 9 years ago
  14. 7763c68 merge 3.4 by Benjamin Peterson · 9 years ago
  15. ff0f322 merge 3.3 by Benjamin Peterson · 9 years ago
  16. 59b08c1 use safe allocation and reallocation macros by Benjamin Peterson · 9 years ago
  17. a72f0cd Issue #24489: ensure a previously set C errno doesn't disturb cmath.polar(). by Antoine Pitrou · 9 years ago
  18. 6bc217d Issue #24489: ensure a previously set C errno doesn't disturb cmath.polar(). by Antoine Pitrou · 9 years ago
  19. 553e156 Fixed indentation of Python examples in C comments. by Serhiy Storchaka · 9 years ago
  20. d741a88 Fixed indentation of Python examples in C comments. by Serhiy Storchaka · 9 years ago
  21. e7070f0 Issue #14373: C implementation of functools.lru_cache() now can be used with by Serhiy Storchaka · 9 years ago
  22. ab2f966 Issue #23659: Document **fmtparams in csv.register_dialect docstring. by Berker Peksag · 9 years ago
  23. 12b50ce Issue #23659: Document **fmtparams in csv.register_dialect docstring. by Berker Peksag · 9 years ago
  24. 53f9502 Issue #24373: Eliminate PEP 489 test refleaks by Nick Coghlan · 9 years ago
  25. d5519ed Issue #19543: Implementation of isclose as per PEP 485 by Tal Einat · 9 years ago
  26. ac5569b Issue #24115: Update uses of PyObject_IsTrue(), PyObject_Not(), by Serhiy Storchaka · 9 years ago
  27. fa494fd Issue #24115: Update uses of PyObject_IsTrue(), PyObject_Not(), by Serhiy Storchaka · 9 years ago
  28. 8b2e8b6 Specify default values of semantic booleans in Argument Clinic generated signatures as booleans. by Serhiy Storchaka · 9 years ago
  29. 7e810a6 Use converter names instead of format units in Argument Clinic descriptions by Serhiy Storchaka · 9 years ago
  30. 96c6af9 Issue #16991: Add a C implementation of collections.OrderedDict. by Eric Snow · 9 years ago
  31. e20056c fix importing one char extension modules (closes #24328) by Benjamin Peterson · 9 years ago
  32. a663121 Issue #24326: Fixed audioop.ratecv() with non-default weightB argument. by Serhiy Storchaka · 9 years ago
  33. 50451eb Issue #24326: Fixed audioop.ratecv() with non-default weightB argument. by Serhiy Storchaka · 9 years ago
  34. 6ef0590 Issue 24017: Drop getawaitablefunc and friends in favor of unaryfunc. by Yury Selivanov · 9 years ago
  35. 46c5611 Backed out changeset: b0a0b9b59012 by Serhiy Storchaka · 9 years ago
  36. 8252cc9 Backed out changeset 57776eee74f2 by Larry Hastings · 9 years ago
  37. 1c858c3 Issue #14373: Added C implementation of functools.lru_cache(). Based on by Serhiy Storchaka · 9 years ago
  38. 6baa0f9 Fixes cast warning in bufferedio.c by Steve Dower · 9 years ago
  39. a48db2b Issue #24268: Address some PEP 489 refleaks by Nick Coghlan · 9 years ago
  40. d5cacbb PEP 489: Multi-phase extension module initialization by Nick Coghlan · 9 years ago
  41. d9ef74e Issue 24244: Prevents termination when an invalid format string is encountered on Windows. by Steve Dower · 9 years ago
  42. 7dc9dea Issue #20035: Reimplement tkinter._fix module as a C function. by Zachary Ware · 9 years ago
  43. e79ec70 Issue #24257: Fixed incorrect uses of PyObject_IsInstance(). by Serhiy Storchaka · 9 years ago
  44. 08d230a Issue #24257: Fixed incorrect uses of PyObject_IsInstance(). by Serhiy Storchaka · 9 years ago
  45. 5cbd833 Issue #24221: Small optimizations for heapq. by Raymond Hettinger · 9 years ago
  46. 548de2b Issue #22955: Fixed reference leak in attrgetter.repr(). by Serhiy Storchaka · 9 years ago
  47. 45d6156 Issue #9858: Add missing method stubs to _io.RawIOBase. Patch by Laura Rupprecht. by Antoine Pitrou · 9 years ago
  48. 35ac5f8 Issue #22955: attrgetter, itemgetter and methodcaller objects in the operator by Serhiy Storchaka · 9 years ago
  49. a2c145c Issue #24091: Fixed various crashes in corner cases in C implementation of by Serhiy Storchaka · 9 years ago
  50. 5bf3120 Issue #24091: Fixed various crashes in corner cases in C implementation of by Serhiy Storchaka · 9 years ago
  51. c15ea4c Issue #23488: Fix a syntax error on big endian platforms. by Zachary Ware · 9 years ago
  52. de12b79 allow test node after ** in calls (closes #24176) by Benjamin Peterson · 9 years ago
  53. 6b680cd Fixed compilation error in signalmodule.c (issue #20182). by Serhiy Storchaka · 9 years ago
  54. c7027b7 Issue #20182: converted the signal module to use Argument Clinic by Tal Einat · 9 years ago
  55. c784c6d Tighten-up code by eliminating an unnecessary variable. by Raymond Hettinger · 9 years ago
  56. d69755d Minor code clean-up. by Raymond Hettinger · 9 years ago
  57. 77772c0 Issue #20172: Update clinicizations to current clinic. by Zachary Ware · 9 years ago
  58. dce0405 Issue #23488: Random generator objects now consume 2x less memory on 64-bit. by Serhiy Storchaka · 9 years ago
  59. f2244ea Issue #20172: Convert the _winapi module to Argument Clinic. by Zachary Ware · 9 years ago
  60. 6364880 More timings suggest that 2500 is closer to the break-even point. by Raymond Hettinger · 9 years ago
  61. f0b5015 Converted os._getfullpathname() and os._isdir() to Argument Clinic. by Serhiy Storchaka · 9 years ago
  62. 48e47aa Issue #22486: Added the math.gcd() function. The fractions.gcd() function now is by Serhiy Storchaka · 9 years ago
  63. ea6d559 Issue #23796: peak and read1 methods of BufferedReader now raise ValueError by Berker Peksag · 9 years ago
  64. d10d6ae Issue #23796: peak and read1 methods of BufferedReader now raise ValueError by Berker Peksag · 9 years ago
  65. 1aa5e1d Fixed compilation on Windows for issue #20173. by Serhiy Storchaka · 9 years ago
  66. 0c59ff6 Issue #20173: Converted the _codecs module to Argument Clinic. by Serhiy Storchaka · 9 years ago
  67. b9db9e1 Defend against a mutation during comparison by Raymond Hettinger · 9 years ago
  68. 7544508 PEP 0492 -- Coroutines with async and await syntax. Issue #24017. by Yury Selivanov · 9 years ago
  69. 4e6bf4b merge by Raymond Hettinger · 9 years ago
  70. 99bf9a2 Minor code cleanups. by Raymond Hettinger · 9 years ago
  71. a032e46 Minor stylistic clean-up. by Raymond Hettinger · 9 years ago
  72. bc33e57 Issue #24155: Optimize heapify for better cache utililzation. by Raymond Hettinger · 9 years ago
  73. dae2ef1 merge 3.4 by Benjamin Peterson · 9 years ago
  74. 65bcdd7 ensure .keywords is always a dict by Benjamin Peterson · 9 years ago
  75. 43e3d22 merge 3.4 (#23042) by Benjamin Peterson · 9 years ago
  76. 0171d7f fix libffi compilation on FreeBSD (#23042) by Benjamin Peterson · 9 years ago
  77. 3b12e95 Issue #20274: When calling a _sqlite.Connection, it now complains if passed by Larry Hastings · 9 years ago
  78. 01b0883 Issue #20274: Remove ignored and erroneous "kwargs" parameters from three by Larry Hastings · 9 years ago
  79. 38337d1 Issue #24000: Improved Argument Clinic's mapping of converters to legacy by Larry Hastings · 9 years ago
  80. 8d0f620 Use specialized functions intead of Py_BuildValue() in _tkinter. by Serhiy Storchaka · 9 years ago
  81. 645058d Issue #23880: Tkinter's getint() and getdouble() now support Tcl_Obj. by Serhiy Storchaka · 9 years ago
  82. 008d88b Issue #24009: Got rid of using rare "y#" format unit in TextIOWrapper.tell(). by Serhiy Storchaka · 9 years ago
  83. 025e9eb PEP 448: additional unpacking generalizations (closes #2292) by Benjamin Peterson · 9 years ago
  84. dbfdc38 Issue #24001: Argument Clinic converters now use accept={type} by Larry Hastings · 9 years ago
  85. cb98556 Issue #20159. Converted the _elementtree module to Argument Clinic. by Serhiy Storchaka · 9 years ago
  86. 2d0a69a Fix Windows build breakage from checkins on Issues #20148 and #20168. by Larry Hastings · 9 years ago
  87. 4b7b82f Issue #20179: Converted the _ssl module to Argument Clinic. by Serhiy Storchaka · 9 years ago
  88. a860aea Issue #20148: Converted the _sre module to Argument Clinic. by Serhiy Storchaka · 9 years ago
  89. 5abdf484 Issue #20168: Converted the _tkinter module to Argument Clinic. by Serhiy Storchaka · 9 years ago
  90. 88abdef merge 3.4 (#24094) by Benjamin Peterson · 9 years ago
  91. 122f4b1 merge 3.3 (#24094) by Benjamin Peterson · 9 years ago
  92. 501182a just sort the items tuple directly (closes #24094) by Benjamin Peterson · 9 years ago
  93. c6249a6 Defer deleted item decref until after the deque is restored to a consistent state. by Raymond Hettinger · 9 years ago
  94. 1dd8e71 Issues #24099, #24100, and #24101: Fix free-after-use bug in heapq. by Raymond Hettinger · 9 years ago
  95. 1dfd247 remove the concept of an unoptimized function scope from the compiler, since it can't happen anymore by Benjamin Peterson · 9 years ago
  96. fc9d6f6 merge 3.4 (#24058) by Benjamin Peterson · 9 years ago
  97. 0c6a5d1 remove extern definition, since it's in a header file (closes #24058) by Benjamin Peterson · 9 years ago
  98. 9afe8a3 Fix computation of max_fd on OpenBSD. Issue #23852. by Gregory P. Smith · 9 years ago
  99. f968177 Fix computation of max_fd on OpenBSD. Issue #23852. by Gregory P. Smith · 9 years ago
  100. 9c6b916 Switch binascii over to using the common _Py_strhex implementation for its hex by Gregory P. Smith · 9 years ago