1. af7b9ec bpo-25803: Avoid incorrect errors raised by Path.mkdir(exist_ok=True) (#805) by Serhiy Storchaka · 8 years ago
  2. 8988945 bpo-29861: release references to multiprocessing Pool tasks (#743) by Antoine Pitrou · 8 years ago
  3. e304e33 bpo-19930: The mode argument of os.makedirs() no longer affects the file (#799) by Serhiy Storchaka · 8 years ago
  4. 5619ab2 doc: Fix small typos in library/multiprocessing (GH-698) by Sylvain Bellemare · 8 years ago
  5. 8a543c0 `make tags` fixes (GH-717) by Alex Dzyoba · 8 years ago
  6. 20fbf8a faulthandler: Restore the old sigaltstack during teardown (#777) by Christophe Zeitouny · 8 years ago
  7. 0b3ec19 Use NULL rather than 0. (#778) by Serhiy Storchaka · 8 years ago
  8. aefa7eb bpo-6532: Make the thread id an unsigned integer. (#781) by Serhiy Storchaka · 8 years ago
  9. 1e2147b bpo-29728: Provide socket.TCP_NOTSENT_LOWAT (#477) by Nathaniel J. Smith · 8 years ago
  10. fad7f15 Remove an outdated statement in execution model docs (GH-754) by Ivan Levkivskyi · 8 years ago
  11. bd3d8ba doc: minor fix for library/profile (GH-761) by INADA Naoki · 8 years ago
  12. 75b6cf8 fix function name in tabnanny documentation (GH-759) by Jelle Zijlstra · 8 years ago
  13. d7fa6b2 bpo-29859: Fix error messages from return codes for pthread_* calls (GH-741) by Daniel Birnstiel · 8 years ago
  14. fff9a31 bpo-29865: Use PyXXX_GET_SIZE macros rather than Py_SIZE for concrete types. (#748) by Serhiy Storchaka · 8 years ago
  15. c61ac16 Don't use Py_SIZE for dict object. (#747) by Serhiy Storchaka · 8 years ago
  16. 554626a bpo-27593: Revise git SCM build info. (#744) by Ned Deily · 8 years ago
  17. 4830f58 bpo-29849: fix a memory leak in import_from (GH-712) by Xiang Zhang · 8 years ago
  18. 05f5373 Fix "NotImplentedError" typo in constants documentation (#692) by zertrin · 8 years ago
  19. df82808 bpo-20087: Revert "make the glibc alias table take precedence over the X11 one (#422)" (#713) by Benjamin Peterson · 8 years ago
  20. e46fb86 bpo-28876: bool of large range raises OverflowError (#699) by 4kir4 · 8 years ago
  21. 6450878 bpo-29856: Fix typo in curses documentation (GH-730) by Mariatta · 8 years ago
  22. 24c738a bpo-29845: Mark tests that use _testcapi as CPython-only (#711) by Serhiy Storchaka · 8 years ago
  23. 6b5a9ec bpo-29116: Fix error messages for concatenating bytes and bytearray with unsupported type. (#709) by Serhiy Storchaka · 8 years ago
  24. 004e03f bpo-29116: Improve error message for concatenating str with non-str. (#710) by Serhiy Storchaka · 8 years ago
  25. 80ec836 bpo-29748: Added the slice index converter in Argument Clinic. (#549) by Serhiy Storchaka · 8 years ago
  26. a5af6e1 bpo-25455: Fixed crashes in repr of recursive buffered file-like objects. (#514) by Serhiy Storchaka · 8 years ago
  27. 77ed115 Drop C++ header compatibility test (#718) by Brett Cannon · 8 years ago
  28. 18b250f bpo-29793: Convert some builtin types constructors to Argument Clinic. (#615) by Serhiy Storchaka · 8 years ago
  29. 0b56159 bpo-20186: Convert tuple object implementation to Argument Clinic. (#614) by Serhiy Storchaka · 8 years ago
  30. 5c643a0 bpo-20185: Convert typeobject.c to Argument Clinic. (#544) by Serhiy Storchaka · 8 years ago
  31. bdf6b91 bpo-29776: Use decorator syntax for properties. (#585) by Serhiy Storchaka · 8 years ago
  32. c85a266 bpo-28749: Fixed the documentation of the mapping codec APIs. (#487) by Serhiy Storchaka · 8 years ago
  33. 909a6f6 bpo-27200: Fix doctests in programming.rst and datetime.rst (#401) by Marco Buttu · 8 years ago
  34. 993d4b3 Combine the C++ header CI build into the main C build (GH-697) by Brett Cannon · 8 years ago
  35. cb5297a bpo-29836: Remove nturl2path from test_sundry and amend the module docstring (GH-694) by Jim Fasarakis-Hilliard · 8 years ago
  36. 1b038e0 bpo-29808: SysLogHandler: Do not fail if initial connect to syslog failed (#663) (#663) by Коренберг Марк · 8 years ago
  37. 3f2155f bpo-16355: Clarify when inspect.getcomments() returns None (#428) by Marco Buttu · 8 years ago
  38. 1bb0f37 bpo-29820: othergui.rst: Remove outdated information (GH-685) by Marco Buttu · 8 years ago
  39. 3286123 Takes vcruntime140.dll from the correct source. (#679) by Steve Dower · 8 years ago
  40. bd583ef bpo-29581: Make ABCMeta.__new__ pass **kwargs to type.__new__ (#527) by Nate · 8 years ago
  41. b4e9087 Fix stderr bug in json.tool test (#346) by Daniel Himmelstein · 8 years ago
  42. 6c3d527 bpo-29800: Fix crashes in partial.__repr__ if the keys of partial.keywords are not strings (#649) by Michael Seifert · 8 years ago
  43. 024b4fd Use the default number of reviewers (3) for mention-bot (#667) by Donald Stufft · 8 years ago
  44. 0f7b0b3 bpo-29735: Optimize partial_call(): avoid tuple (#516) by Victor Stinner · 8 years ago
  45. d4914e9 Add ELLIPSIS and RARROW. Add tests (#666) by Jim Fasarakis-Hilliard · 8 years ago
  46. 9135275 bpo-28810: Update lnotab_notes.txt (#665) by Ivan Levkivskyi · 8 years ago
  47. 2e4e011 bpo-29592: site: skip abs_paths() when it's redundant (GH-167) by INADA Naoki · 8 years ago
  48. aa289a5 bpo-29548: Recommend PyObject_Call APIs over PyEval_Call APIs. (GH-75) by INADA Naoki · 8 years ago
  49. 7e2a54c bpo-28856: Let %b format for bytes support objects that follow the buffer protocol (GH-546) by Xiang Zhang · 8 years ago
  50. 9e52c90 ftplib.FTP.retrbinary callback gets a bytes, not a str (GH-652) by Jelle Zijlstra · 8 years ago
  51. 7bb6ac7 fix the name of argument to ftplib.FTP.set_pasv and fix wording (GH-653) by Jelle Zijlstra · 8 years ago
  52. b2d7717 bpo-29756: Improve documentation for list methods that compare items by equality (GH-572) by Xiang Zhang · 8 years ago
  53. 0042510 bpo-29730: replace some calls to PyNumber_Check and improve some error messages (#650) by Oren Milman · 8 years ago
  54. b7c9150 Fix wrapping into StopIteration of return values in generators and coroutines (#644) by Yury Selivanov · 8 years ago
  55. 2b27e2e bpo-29742: asyncio get_extra_info() throws exception (#525) by Nikolay Kim · 8 years ago
  56. 783d0c1 bpo-28667: Fix a compile warning on FreeBSD when compare with FD_SETSIZE. (#501) by Serhiy Storchaka · 8 years ago
  57. bc44f04 bpo-15695: Add PyAPI_FUNC() to _PyDict_SizeOf() declaration. (#639) by Serhiy Storchaka · 8 years ago
  58. 4125e5c bpo-26121: Revert to using the own implementations of lgamma and gamma on all platforms. (#637) by Serhiy Storchaka · 8 years ago
  59. c2cf128 bpo-8256: Fixed possible failing or crashing input() (#517) by Serhiy Storchaka · 8 years ago
  60. 4dadcd4 bpo-26121: Use C library implementation for math functions erf() and erfc() on Windows. (#632) by Serhiy Storchaka · 8 years ago
  61. 27abb0e bpo-29723: Add missing NEWS entry (#638) by Nick Coghlan · 8 years ago
  62. f659598 bpo-28692: Deprecate using non-integer value for selecting a plural form in gettext. (#507) by Serhiy Storchaka · 8 years ago
  63. 1989763 bpo-20185: Convert the resource moduel to Argument Clinic. (#545) by Serhiy Storchaka · 8 years ago
  64. d2977a3 bpo-29723: Consistently configure sys.path[0] (#575) by Nick Coghlan · 8 years ago
  65. 6a6d090 bpo-29798: Handle git worktree in `make patchcheck` (#629) by Nick Coghlan · 8 years ago
  66. 8999cae bpo-15695: Implemented StgDict.__sizeof__(). (#509) by Serhiy Storchaka · 8 years ago
  67. 202fda5 bpo-24037: Add Argument Clinic converter `bool(accept={int})`. (#485) by Serhiy Storchaka · 8 years ago
  68. 0767ad4 bpo-20185: Convert the marshal module to Argument Clinic. (#541) by Serhiy Storchaka · 8 years ago
  69. c611a5b bpo-29746: Update marshal docs to Python 3. (#547) by Serhiy Storchaka · 8 years ago
  70. 93710c1 bpo-29763: Use support.unlink instead of os.unlink (GH-624) by Zachary Ware · 8 years ago
  71. 482f7a2 bpo-29656: Handle PR branches in 'make patchcheck' (#302) by Nick Coghlan · 8 years ago
  72. 97553fd bpo-26121: Use C library implementation for math functions: (#515) by Serhiy Storchaka · 8 years ago
  73. c5d3bfe Only trigger AppVeyor on code or config changes (GH-611) by Zachary Ware · 8 years ago
  74. d3b8f98 tempfile.rst: Fix some typos (GH-610) by Jelle Zijlstra · 8 years ago
  75. b5c51d3 bpo-20185: Convert float object implementation to Argument Clinic. (#543) by Serhiy Storchaka · 8 years ago
  76. fdd42c4 bpo-20185: Convert list object implementation to Argument Clinic. (#542) by Serhiy Storchaka · 8 years ago
  77. 0710d75 bpo-29770: remove outdated PYO related info (GH-590) by Xiang Zhang · 8 years ago
  78. 70ee0cd bpo-29784: Fix the reference to shutil.copy in the docs (GH-602) by Mariatta · 8 years ago
  79. 4b2a2a4 bpo-28810: Document changes to CALL_FUNCTION opcodes (GH-250) by Ivan Levkivskyi · 8 years ago
  80. 7400254 bpo-29741: Clean up C implementations of BytesIO and StringIO. (#606) by orenmn · 8 years ago
  81. 7e52c3e bpo-28810: Document BUILD_TUPLE_UNPACK_WITH_CALL bytecode added in 3.6 (GH-239) by Ivan Levkivskyi · 8 years ago
  82. d4e8928 bpo-28739: Document that f-strings cannot be used as docstring (GH-592) by Mariatta · 8 years ago
  83. 50da40f Ignore Include/pydtrace_probes.h (#597) by Łukasz Langa · 8 years ago
  84. 9e6ac83 bpo-29773: Add more cases for testing string to float conversion errors. (#580) by Serhiy Storchaka · 8 years ago
  85. 0f6d733 bpo-29619: Convert st_ino using unsigned integer (#557) by Victor Stinner · 8 years ago
  86. feccdb2 bpo-29774: Improve error reporting for corrupted extra field in ZIP file. (#583) by Serhiy Storchaka · 8 years ago
  87. 964281a bpo-28298: make array 'Q', 'L' and 'I' accept big intables as elements (#570) by orenmn · 8 years ago
  88. 22e707f bpo-29768: Fixed compile-time check for expat version. (#574) by Serhiy Storchaka · 8 years ago
  89. 390a096 bpo-29749: Update int() docstring (GH-565) by svelankar · 8 years ago
  90. 370fd20 Use Py_RETURN_FALSE/Py_RETURN_TRUE rather than PyBool_FromLong(0)/PyBool_FromLong(1). (#567) by Serhiy Storchaka · 8 years ago
  91. f7eda38 Fix the only non-C90 comment to be C90 compatible. (#566) by n.d. parker · 8 years ago
  92. 4a2ffce Exit Travis when only Misc/* is changed. (#564) by Serhiy Storchaka · 8 years ago
  93. a7cba27 bpo-29645: Speed up importing the webbrowser module. (#484) by Serhiy Storchaka · 8 years ago
  94. 8606e95 bpo-28231: The zipfile module now accepts path-like objects for external paths. (#511) by Serhiy Storchaka · 8 years ago
  95. c351ce6 bpo-28331: fix impl-detail label is removed when content is translated. (GH-195) by INADA Naoki · 8 years ago
  96. c45cd16 bpo-28230: Document the pathlib support in tarfile and add tests. (#512) by Serhiy Storchaka · 8 years ago
  97. 21a7431 Revert "bpo-29571: Use correct locale encoding in test_re (#149)" (#554) by Benjamin Peterson · 8 years ago
  98. ad4a0cc allow the first call to wcsxfrm to return ERANGE (#536) by Benjamin Peterson · 8 years ago
  99. 02371e0 make the glibc alias table take precedence over the X11 one (#422) by Benjamin Peterson · 8 years ago
  100. 9f8ad3f bpo-29568: Disable any characters between two percents for escaped percent "%%" in the format string for classic string formatting. (GH-513) by Serhiy Storchaka · 8 years ago