1. de12b79 allow test node after ** in calls (closes #24176) by Benjamin Peterson · 9 years ago
  2. 6b680cd Fixed compilation error in signalmodule.c (issue #20182). by Serhiy Storchaka · 9 years ago
  3. c7027b7 Issue #20182: converted the signal module to use Argument Clinic by Tal Einat · 9 years ago
  4. c784c6d Tighten-up code by eliminating an unnecessary variable. by Raymond Hettinger · 9 years ago
  5. d69755d Minor code clean-up. by Raymond Hettinger · 9 years ago
  6. 77772c0 Issue #20172: Update clinicizations to current clinic. by Zachary Ware · 9 years ago
  7. dce0405 Issue #23488: Random generator objects now consume 2x less memory on 64-bit. by Serhiy Storchaka · 9 years ago
  8. f2244ea Issue #20172: Convert the _winapi module to Argument Clinic. by Zachary Ware · 9 years ago
  9. 6364880 More timings suggest that 2500 is closer to the break-even point. by Raymond Hettinger · 9 years ago
  10. f0b5015 Converted os._getfullpathname() and os._isdir() to Argument Clinic. by Serhiy Storchaka · 9 years ago
  11. 48e47aa Issue #22486: Added the math.gcd() function. The fractions.gcd() function now is by Serhiy Storchaka · 9 years ago
  12. ea6d559 Issue #23796: peak and read1 methods of BufferedReader now raise ValueError by Berker Peksag · 9 years ago
  13. d10d6ae Issue #23796: peak and read1 methods of BufferedReader now raise ValueError by Berker Peksag · 9 years ago
  14. 1aa5e1d Fixed compilation on Windows for issue #20173. by Serhiy Storchaka · 9 years ago
  15. 0c59ff6 Issue #20173: Converted the _codecs module to Argument Clinic. by Serhiy Storchaka · 9 years ago
  16. b9db9e1 Defend against a mutation during comparison by Raymond Hettinger · 9 years ago
  17. 7544508 PEP 0492 -- Coroutines with async and await syntax. Issue #24017. by Yury Selivanov · 9 years ago
  18. 4e6bf4b merge by Raymond Hettinger · 9 years ago
  19. 99bf9a2 Minor code cleanups. by Raymond Hettinger · 9 years ago
  20. a032e46 Minor stylistic clean-up. by Raymond Hettinger · 9 years ago
  21. bc33e57 Issue #24155: Optimize heapify for better cache utililzation. by Raymond Hettinger · 9 years ago
  22. dae2ef1 merge 3.4 by Benjamin Peterson · 9 years ago
  23. 65bcdd7 ensure .keywords is always a dict by Benjamin Peterson · 9 years ago
  24. 43e3d22 merge 3.4 (#23042) by Benjamin Peterson · 9 years ago
  25. 0171d7f fix libffi compilation on FreeBSD (#23042) by Benjamin Peterson · 9 years ago
  26. 3b12e95 Issue #20274: When calling a _sqlite.Connection, it now complains if passed by Larry Hastings · 9 years ago
  27. 01b0883 Issue #20274: Remove ignored and erroneous "kwargs" parameters from three by Larry Hastings · 9 years ago
  28. 38337d1 Issue #24000: Improved Argument Clinic's mapping of converters to legacy by Larry Hastings · 9 years ago
  29. 8d0f620 Use specialized functions intead of Py_BuildValue() in _tkinter. by Serhiy Storchaka · 9 years ago
  30. 645058d Issue #23880: Tkinter's getint() and getdouble() now support Tcl_Obj. by Serhiy Storchaka · 9 years ago
  31. 008d88b Issue #24009: Got rid of using rare "y#" format unit in TextIOWrapper.tell(). by Serhiy Storchaka · 9 years ago
  32. 025e9eb PEP 448: additional unpacking generalizations (closes #2292) by Benjamin Peterson · 9 years ago
  33. dbfdc38 Issue #24001: Argument Clinic converters now use accept={type} by Larry Hastings · 9 years ago
  34. cb98556 Issue #20159. Converted the _elementtree module to Argument Clinic. by Serhiy Storchaka · 9 years ago
  35. 2d0a69a Fix Windows build breakage from checkins on Issues #20148 and #20168. by Larry Hastings · 9 years ago
  36. 4b7b82f Issue #20179: Converted the _ssl module to Argument Clinic. by Serhiy Storchaka · 9 years ago
  37. a860aea Issue #20148: Converted the _sre module to Argument Clinic. by Serhiy Storchaka · 9 years ago
  38. 5abdf484 Issue #20168: Converted the _tkinter module to Argument Clinic. by Serhiy Storchaka · 9 years ago
  39. 88abdef merge 3.4 (#24094) by Benjamin Peterson · 9 years ago
  40. 122f4b1 merge 3.3 (#24094) by Benjamin Peterson · 9 years ago
  41. 501182a just sort the items tuple directly (closes #24094) by Benjamin Peterson · 9 years ago
  42. c6249a6 Defer deleted item decref until after the deque is restored to a consistent state. by Raymond Hettinger · 9 years ago
  43. 1dd8e71 Issues #24099, #24100, and #24101: Fix free-after-use bug in heapq. by Raymond Hettinger · 9 years ago
  44. 1dfd247 remove the concept of an unoptimized function scope from the compiler, since it can't happen anymore by Benjamin Peterson · 9 years ago
  45. fc9d6f6 merge 3.4 (#24058) by Benjamin Peterson · 9 years ago
  46. 0c6a5d1 remove extern definition, since it's in a header file (closes #24058) by Benjamin Peterson · 9 years ago
  47. 9afe8a3 Fix computation of max_fd on OpenBSD. Issue #23852. by Gregory P. Smith · 9 years ago
  48. f968177 Fix computation of max_fd on OpenBSD. Issue #23852. by Gregory P. Smith · 9 years ago
  49. 9c6b916 Switch binascii over to using the common _Py_strhex implementation for its hex by Gregory P. Smith · 9 years ago
  50. 4dff6f6 Issue9951: update _hashopenssl and md5module to use _Py_strhex(). by Gregory P. Smith · 9 years ago
  51. 8cb6569 Implements issue #9951: Adds a hex() method to bytes, bytearray, & memoryview. by Gregory P. Smith · 9 years ago
  52. cc0bbbc (Merge 3.4) Issue #9246: On POSIX, os.getcwd() now supports paths longer than by Victor Stinner · 9 years ago
  53. 4403d7d Issue #9246: On POSIX, os.getcwd() now supports paths longer than 1025 bytes by Victor Stinner · 9 years ago
  54. 247789c Issue #24007: Argument Clinic now writes the format of PyArg_Parse*() at the by Serhiy Storchaka · 9 years ago
  55. 71b49dd Issue #16840. Turn off bignum support in tkinter with with Tcl earlier than 8.5.8 by Serhiy Storchaka · 9 years ago
  56. 3af7a38 Issue #16840. Turn off bignum support in tkinter with with Tcl earlier than 8.5.8 by Serhiy Storchaka · 9 years ago
  57. 8714cfd Get rid of unused-but-set-variable warning. len and len2 should be equal and len2 is technically more correct, too. by Christian Heimes · 9 years ago
  58. 629d697 Issue #16840: Turn on support of bignums only in final release of Tcl 8.5. by Serhiy Storchaka · 9 years ago
  59. 77e8311 Issue #16840: Turn on support of bignums only in final release of Tcl 8.5. by Serhiy Storchaka · 9 years ago
  60. 7e9d1d1 Issue #23908: os functions now reject paths with embedded null character by Serhiy Storchaka · 9 years ago
  61. 2b0d200 Issue #23908: os functions now reject paths with embedded null character by Serhiy Storchaka · 9 years ago
  62. e3037e1 Issue #23728: binascii.crc_hqx() could return an integer outside of the range by Serhiy Storchaka · 9 years ago
  63. 2ef7c47 Issue #23728: binascii.crc_hqx() could return an integer outside of the range by Serhiy Storchaka · 9 years ago
  64. bb72c47 Use PyArg_ParseTuple (new API) instead of PyArg_Parse (old API) for parsing tuples. by Serhiy Storchaka · 9 years ago
  65. 6359641 Issue #20181: Converted the unicodedata module to Argument Clinic. by Serhiy Storchaka · 9 years ago
  66. 9260e77 Issue #20184: Converted _dbm and _gdbm modules to Argument Clinic. by Serhiy Storchaka · 9 years ago
  67. 29fbd21 Remove redundant check fro md5module. by Christian Heimes · 9 years ago
  68. 82adeff Fix typo in assert statement by Christian Heimes · 9 years ago
  69. f24131f Issue #20175: Converted the _io module to Argument Clinic. by Serhiy Storchaka · 9 years ago
  70. 7f90cba Issue #23935: Argument Clinic's understanding of format units by Larry Hastings · 9 years ago
  71. d2bc389 Issue #4254: Adds _curses.update_lines_cols() Patch by Arnon Yaari by Steve Dower · 9 years ago
  72. 89964c4 Issue #23944: Argument Clinic now wraps long impl prototypes at column 78. by Larry Hastings · 9 years ago
  73. dfa4e04 Issue #23943: Fix typos. Patch by Piotr Kasprzyk. by Berker Peksag · 9 years ago
  74. 4882cac Issue #23943: Fix typos. Patch by Piotr Kasprzyk. by Berker Peksag · 9 years ago
  75. 8ef887c Issue #20586: Argument Clinic now ensures signatures on functions without docstrings. by Zachary Ware · 9 years ago
  76. a6cc551 Issue #22631: Added Linux-specific socket constant CAN_RAW_FD_FRAMES. by Larry Hastings · 9 years ago
  77. 4b761bf - merge 3.4 by doko@ubuntu.com · 9 years ago
  78. 1345d20 - Use PLATDIR for the platform directory everywhere (refactoring only) by doko@ubuntu.com · 9 years ago
  79. f299abd Issue #23731: Implement PEP 488. by Brett Cannon · 9 years ago
  80. 56452ee Issue #22982: Improve BOM handling when seeking to multiple positions of a writable text file. by Antoine Pitrou · 9 years ago
  81. 85e3ee7 Issue #22982: Improve BOM handling when seeking to multiple positions of a writable text file. by Antoine Pitrou · 9 years ago
  82. 0f164c6 Merge by Antoine Pitrou · 9 years ago
  83. 20d31b5 Merge by Antoine Pitrou · 9 years ago
  84. cb46f0e Issue #23309: Avoid a deadlock at shutdown if a daemon thread is aborted by Antoine Pitrou · 9 years ago
  85. 25f85d4 Issue #23309: Avoid a deadlock at shutdown if a daemon thread is aborted by Antoine Pitrou · 9 years ago
  86. 774ac37 Closes #17202: Merge with 3.4 by Zachary Ware · 9 years ago
  87. 4c9c848 Issue #17202: Add .bat to .hgeol to force them to CRLF. by Zachary Ware · 9 years ago
  88. 5646de4 make DirEntryType and ScandirIteratorType static (closes #23918) by Benjamin Peterson · 9 years ago
  89. f737703 Issue #23668: Regenerates posixmodule.c.h for new ifdefs by Steve Dower · 9 years ago
  90. a1c7e72 Issue #23668: Suppresses invalid parameter handler around chsize calls. by Steve Dower · 9 years ago
  91. 8fc8980 Issue #23524: Replace _PyVerify_fd function with calls to _set_thread_local_invalid_parameter_handler. by Steve Dower · 9 years ago
  92. 3d2279f Issue #21859: Corrected FileIO docstrings. by Serhiy Storchaka · 9 years ago
  93. fe0a41a Issue #23668: Adds support for os.truncate and os.ftruncate on Windows by Steve Dower · 9 years ago
  94. 6433e9e - Modules/Setup.dist: remove time extension duplicate, introduced by the fix for #5309. by doko@ubuntu.com · 9 years ago
  95. cd092ef Issue #21859: Corrected FileIO docstrings. by Serhiy Storchaka · 9 years ago
  96. 5056769 Replaced "string" with "bytes object" in docstrings of binary I/O objects. by Serhiy Storchaka · 9 years ago
  97. b817b77 Replaced "string" with "bytes object" in docstrings of binary I/O objects. by Serhiy Storchaka · 9 years ago
  98. 43b8427 remove extra arguments in arg parsing format codes (closes #23875) by Benjamin Peterson · 9 years ago
  99. ced1174 Issue #23618: Fix internal_select() for negative timeout (blocking socket) when by Victor Stinner · 9 years ago
  100. 88ed640 Issue #23834: Fix the default socket timeout by Victor Stinner · 9 years ago