1. 4a934d4 bpo-33012: Fix invalid function cast warnings with gcc 8 in Argument Clinic. (GH-6748) by Serhiy Storchaka · 6 years ago
  2. 2810dd7 closes bpo-32285: Add unicodedata.is_normalized. (GH-4806) by Max Bélanger · 6 years ago
  3. b942707 bpo-29341: Clarify that path-like objects are accepted in some os methods (GH-10101) by BNMetrics · 6 years ago
  4. f192aeb bpo-20216: Correct docstrings of digest() methods in hashlib. (GH-9873) by Srinivas Thatiparthy (శ్రీనివాస్ తాటిపర్తి) · 6 years ago
  5. 55f8249 bpo-34741: Get rid of tp_getattro and tp_setattro in pyexpat.xmlparser. (GH-9422) by Serhiy Storchaka · 6 years ago
  6. 81574b8 closes bpo-34862: Guard definition of convert_sched_param with POSIX_SPAWN_SETSCHEDULER. (GH-9658) by William Orr · 6 years ago
  7. df81015 Speed-up math.dist() by 30% (GH-9628) by Raymond Hettinger · 6 years ago
  8. e2f48bf bpo-34797: Convert heapq to the argument clinic (GH-9560) by Pablo Galindo · 6 years ago
  9. a0fd7f1 Migrate datetime.date.fromtimestamp to Argument Clinic (GH-8535) by Tim Hoffmann · 6 years ago
  10. 9718b59 bpo-34659: Adds initial kwarg to itertools.accumulate() (GH-9345) by Lisa Roach · 6 years ago
  11. 9fb051f bpo-34670: Add TLS 1.3 post handshake auth (GH-9460) by Christian Heimes · 6 years ago
  12. 79d1c2e bpo-25711: Rewrite zipimport in pure Python. (GH-6809) by Serhiy Storchaka · 6 years ago
  13. 0185f34 bpo-33721: Make some os.path functions and pathlib.Path methods be tolerant to invalid paths. (#7695) by Serhiy Storchaka · 6 years ago
  14. 7bdf282 bpo-32455: Add jump parameter to dis.stack_effect(). (GH-6610) by Serhiy Storchaka · 6 years ago
  15. 12a69db Convert os.readlink() to Argument Clinic. (GH-8778) by Serhiy Storchaka · 6 years ago
  16. c4bccd3 bpo-20180: convert most of itertoolsmodule.c to use Argument Clinic (GH-9164) by Tal Einat · 6 years ago
  17. 3286ce4 bpo-20180: itertools.groupby Argument Clinic conversion (GH-4170) by Tal Einat · 6 years ago
  18. d700f97 bpo-20104: Change the file_actions parameter of os.posix_spawn(). (GH-6725) by Serhiy Storchaka · 6 years ago
  19. 2865848 bpo-34604: Fix possible mojibake in pwd.getpwnam() and grp.getgrnam() (GH-9098) by William Grzybowski · 6 years ago
  20. 254a466 bpo-20104: Add flag capabilities to posix_spawn (GH-6693) by Pablo Galindo · 6 years ago
  21. 266f490 bpo-34563: Fix for invalid assert on big output of multiprocessing.Process (GH-9027) by Alexander Buchkovsky · 6 years ago
  22. cca4eec bpo-34270: Make it possible to name asyncio tasks (GH-8547) by Alex Grönholm · 6 years ago
  23. 9c18b1a bpo-33089: Add math.dist() for computing the Euclidean distance between two points (GH-8561) by Raymond Hettinger · 6 years ago
  24. f1d36d8 bpo-33729: Fix issues with arguments parsing in hashlib. (GH-8346) by Serhiy Storchaka · 6 years ago
  25. c6dabe3 bpo-33089: Multidimensional math.hypot() (GH-8474) by Raymond Hettinger · 6 years ago
  26. 7cb7bcf bpo-20260: Implement non-bitwise unsigned int converters for Argument Clinic. (GH-8434) by Serhiy Storchaka · 6 years ago
  27. 02ec92f bpo-29209: Remove old-deprecated features in ElementTree. (GH-6769) by Serhiy Storchaka · 6 years ago
  28. 6dc57e2 bpo-31938: Convert selectmodule.c to Argument Clinic (GH-4265) by Tal Einat · 6 years ago
  29. d2cbfff bpo-25007: Add copy protocol support to zlib compressors and decompressors (GH-7940) by Zackery Spytz · 6 years ago
  30. c7f02a9 bpo-33671 / shutil.copyfile: use memoryview() with dynamic size on Windows (#7681) by Giampaolo Rodola · 6 years ago
  31. 4a172cc bpo-33671: efficient zero-copy for shutil.copy* functions (Linux, OSX and Win) (#7160) by Giampaolo Rodola · 6 years ago
  32. b00854c bpo-20171: Convert the _curses and _curses_panel modules to Argument Clinic. (GH-4251) by Serhiy Storchaka · 6 years ago
  33. d54cfb1 bpo-33441: Make the sigset_t converter available in other modules. (GH-6720) by Serhiy Storchaka · 6 years ago
  34. 9d3627e bpo-33332: Add signal.valid_signals() (GH-6581) by Antoine Pitrou · 6 years ago
  35. ef34753 bpo-20104: Improve error handling and fix a reference leak in os.posix_spawn(). (#6332) by Serhiy Storchaka · 6 years ago
  36. 2e38cc3 bpo-33383: Fix crash in get() of the dbm.ndbm database object. (#6630) by Serhiy Storchaka · 6 years ago
  37. c51d8c9 bpo-23403: Bump pickle.DEFAULT_PROTOCOL to 4 (#6355) by Łukasz Langa · 7 years ago
  38. 5d2a27d signal: add strsignal() (#6017) by Antoine Pietri · 7 years ago
  39. c10b288 bpo-30249: Improve struct.unpack_from() error messages (GH-6059) by Xiang Zhang · 7 years ago
  40. 6f600ff bpo-32922: dbm.open() now encodes filename with the filesystem encoding. (GH-5832) by Serhiy Storchaka · 7 years ago
  41. 29eab55 bpo-30622: Fix NPN for OpenSSL 1.1.1-pre1 (#5876) by Christian Heimes · 7 years ago
  42. 6cdb795 bpo-30622: Improve NPN support detection (#5859) by Christian Heimes · 7 years ago
  43. 141c5e8 bpo-24334: Cleanup SSLSocket (#5252) by Christian Heimes · 7 years ago
  44. 11a1493 [bpo-28414] Make all hostnames in SSL module IDN A-labels (GH-5128) by Christian Heimes · 7 years ago
  45. 23ad6d0 bpo-32556: nt._getfinalpathname, nt._getvolumepathname and nt._getdiskusage now correctly convert from bytes. (GH-5761) by Steve Dower · 7 years ago
  46. 03e3c34 bpo-31333: Re-implement ABCMeta in C (#5273) by Ivan Levkivskyi · 7 years ago
  47. 6c6ddf9 bpo-20104: Expose `posix_spawn` in the os module (GH-5109) by Pablo Galindo · 7 years ago
  48. 4defba3 bpo-31368: Expose preadv and pwritev in the os module (#5239) by Pablo Galindo · 7 years ago
  49. 2f050c7 bpo-32433: Optimized HMAC digest (#5023) by Christian Heimes · 7 years ago
  50. 6f6eb35 bpo-32248 - Implement `ResourceReader` and `get_resource_reader()` for zipimport (#5248) by Barry Warsaw · 7 years ago
  51. 22feeb8 bpo-32643: Drop support for a few private Task and Future APIs. (#5293) by Yury Selivanov · 7 years ago
  52. f23746a bpo-32436: Implement PEP 567 (#5027) by Yury Selivanov · 7 years ago
  53. 05d68a8 bpo-9566: Fix size_t=>int downcast warnings (#5230) by Victor Stinner · 7 years ago
  54. 94e1696 bpo-14976: Reentrant simple queue (#3346) by Antoine Pitrou · 7 years ago
  55. bbdb17d return the new file descriptor from os.dup2 (closes bpo-32441) (#5041) by Benjamin Peterson · 7 years ago
  56. 0cf16f9 bpo-32363: Disable Task.set_exception() and Task.set_result() (#4923) by Yury Selivanov · 7 years ago
  57. ca9b36c bpo-32415: Add asyncio.Task.get_loop() and Future.get_loop() (#4992) by Yury Selivanov · 7 years ago
  58. b2a6083 bpo-19764: Implemented support for subprocess.Popen(close_fds=True) on Windows (#1218) by Segev Finer · 7 years ago
  59. 44d1a59 bpo-32250: Implement asyncio.current_task() and asyncio.all_tasks() (#4799) by Andrew Svetlov · 7 years ago
  60. a5552f0 bpo-32240: Add the const qualifier to declarations of PyObject* array arguments. (#4746) by Serhiy Storchaka · 7 years ago
  61. a70232f bpo-32296: Implement asyncio.get_event_loop and _get_running_loop in C. (#4827) by Yury Selivanov · 7 years ago
  62. 91106cd bpo-29240: PEP 540: Add a new UTF-8 Mode (#855) by Victor Stinner · 7 years ago
  63. a7368ac bpo-32030: Enhance Py_Main() (#4412) by Victor Stinner · 7 years ago
  64. 4f57409 bpo-31926: fix missing *_METHODDEF statements by argument clinic (#4230) by Tal Einat · 7 years ago
  65. 850a18e bpo-30768: Recompute timeout on interrupted lock (GH-4103) by Victor Stinner · 7 years ago
  66. c75edab bpo-31558: Add gc.freeze() (#3705) by brainfvck · 7 years ago
  67. ef611c9 bpo-30807: signal.setitimer() now uses _PyTime API (GH-3865) by Victor Stinner · 7 years ago
  68. 0b5e61d bpo-30397: Add re.Pattern and re.Match. (#1646) by Serhiy Storchaka · 7 years ago
  69. 929b40a bpo-31673: Fixed typo in the name of Tkinter's method adderrorinfo(). (#3864) by Serhiy Storchaka · 7 years ago
  70. d056818 bpo-31428: Prevent raising a SystemError in case the memo arg of ElementTree.Element.__deepcopy__() isn't a dictionary. (#3512) by Oren Milman · 7 years ago
  71. a6a4dc8 bpo-31370: Remove support for threads-less builds (#3385) by Antoine Pitrou · 7 years ago
  72. af64aff Regen Moduls/clinic/_ssl.c.h (GH-3320) by Zachary Ware · 7 years ago
  73. b2d096b bpo-30622: Change NPN detection: (#2079) by Melvyn Sopacua · 7 years ago
  74. bca4939 bpo-31185: Fixed miscellaneous errors in asyncio speedup module. (#3076) by Serhiy Storchaka · 7 years ago
  75. 02f3b7d bpo-31109: Convert zipimport to use Argument Clinic (GH-2990) by Yaron de Leeuw · 7 years ago
  76. 6969eaf bpo-29464: Rename METH_FASTCALL to METH_FASTCALL|METH_KEYWORDS and make (#1955) by Serhiy Storchaka · 7 years ago
  77. 5f31d5c Regenerate Argument Clinic code for bpo-19180. (#2073) by Serhiy Storchaka · 7 years ago
  78. 7445381 bpo-30600: Fix error messages (condition order in Argument Clinic) (#2051) by Sylvain · 7 years ago
  79. 63c2c8a bpo-19180: Updated references for RFC 1750, RFC 3280 & RFC 4366 (GH-148) by Chandan Kumar · 7 years ago
  80. 163468a bpo-16500: Don't use string constants for os.register_at_fork() behavior (#1834) by Gregory P. Smith · 7 years ago
  81. 346cbd3 bpo-16500: Allow registering at-fork handlers (#1715) by Antoine Pitrou · 7 years ago
  82. 6d336a0 bpo-30285: Optimize case-insensitive matching and searching (#1482) by Serhiy Storchaka · 7 years ago
  83. 7186cc2 bpo-30277: Replace _sre.getlower() with _sre.ascii_tolower() and _sre.unicode_tolower(). (#1468) by Serhiy Storchaka · 7 years ago
  84. 13f1f42 bpo-30103: Allow Uuencode in Python using backtick as zero instead of space (#1326) by Xiang Zhang · 7 years ago
  85. 1374dbb restore *data* parameter of binascii.b2a_base64 to positional-only (#1352) by Xiang Zhang · 7 years ago
  86. fdbd011 bpo-10076: Compiled regular expression and match objects now are copyable. (#1000) by Serhiy Storchaka · 8 years ago
  87. 762ec97 bpo-29204: Emit warnings for already deprecated ElementTree features. (#773) by Serhiy Storchaka · 8 years ago
  88. ea720fe bpo-25996: Added support of file descriptors in os.scandir() on Unix. (#502) by Serhiy Storchaka · 8 years ago
  89. aefa7eb bpo-6532: Make the thread id an unsigned integer. (#781) by Serhiy Storchaka · 8 years ago
  90. 1989763 bpo-20185: Convert the resource moduel to Argument Clinic. (#545) by Serhiy Storchaka · 8 years ago
  91. 8d26aa9 bpo-29271: Fix Task.current_task and Task.all_tasks to accept None. (#406) by Yury Selivanov · 8 years ago
  92. 9735384 Issue #20186: Regenerated Argument Clinic. by Serhiy Storchaka · 8 years ago
  93. b451f91 Issue #20186: Converted the tracemalloc module to Argument Clinic. by Serhiy Storchaka · 8 years ago
  94. 5106ad1 Issue #20186: Converted the symtable module to Argument Clinic. by Serhiy Storchaka · 8 years ago
  95. 9326028 Issue #20185: Converted the gc module to Argument Clinic. by Serhiy Storchaka · 8 years ago
  96. a5a5590 Issue #29300: Use Argument Clinic for getting struct object from the format. by Serhiy Storchaka · 8 years ago
  97. c0f59ad Rename struct.unpack() 2nd parameter to "buffer" by Victor Stinner · 8 years ago
  98. 3f2d101 Issue #29300: Convert _struct module to Argument Clinic by Victor Stinner · 8 years ago
  99. 1dfaa6c Issue #29092: Merge 3.6. by Xiang Zhang · 8 years ago
  100. 4459e00 Issue #29092: Sync os.stat's doc and docstring on path type. by Xiang Zhang · 8 years ago