1. d7befad bpo-35537: Document posix_spawn() change in subprocess (GH-11668) by Victor Stinner · 5 years ago
  2. 0ef8c15 bpo-28552: Fix distutils.sysconfig for empty sys.executable (GH-12875) by Victor Stinner · 5 years ago
  3. 235e7b2 bpo-36465: Fix test_regrtest on Windows (GH-12945) by Victor Stinner · 5 years ago
  4. f4e4703 bpo-36465: Make release and debug ABI compatible (GH-12615) by Victor Stinner · 5 years ago
  5. 888f37b Add @pablogsal to code owners file for Parser/pgen (GH-12944) by Pablo Galindo · 5 years ago
  6. 004b93e bpo-36668: FIX reuse semaphore tracker for child processes (#5172) by Thomas Moreau · 5 years ago
  7. 09d434c Issue 35224: Add PEP 572 (assignment expressions) to What's New (#12941) by Guido van Rossum · 5 years ago
  8. 4312522 bpo-36710: Add runtime variable to Py_InitializeEx() (GH-12939) by Victor Stinner · 5 years ago
  9. 8e91c24 bpo-36710: Add runtime variable to Py_FinalizeEx() (GH-12937) by Victor Stinner · 5 years ago
  10. 70bf713 bpo-30840: Document relative imports (#12831) by Joannah Nanjekye · 5 years ago
  11. b930a2d bpo-36710: PyOS_AfterFork_Child() pass runtime parameter (GH-12936) by Victor Stinner · 5 years ago
  12. 8bb3230 bpo-36710: Add runtime parameter to _PyThreadState_Init() (GH-12935) by Victor Stinner · 5 years ago
  13. 6c44fde bpo-36707: Remove the "m" flag (pymalloc) from SOABI (GH-12931) by Victor Stinner · 5 years ago
  14. 4f5a349 fix typo in gzip.py (GH-12928) by Maximilian Nöthe · 5 years ago
  15. d246a67 bpo-36454: Fix test_time.test_monotonic() (GH-12929) by Victor Stinner · 5 years ago
  16. 29d018a replace 'sequencial argument' by 'positional' in doc (GH-12925) by Mathieu Dupuy · 5 years ago
  17. 359bd4f bpo-18372: Add missing PyObject_GC_Track() calls in the pickle module (GH-8505) by Zackery Spytz · 5 years ago
  18. 09415ff fix warnings by adding more const (GH-12924) by Inada Naoki · 5 years ago
  19. 5749134 bpo-36635, bpo-36696: Fix setup.py on AIX (GH-12922) by Victor Stinner · 5 years ago
  20. 84b4784 use `const` in graminit.c (GH-12713) by tyomitch · 5 years ago
  21. fb8c7d5 bpo-36018: Make "seed" into a keyword only argument (GH-12921) by Raymond Hettinger · 5 years ago
  22. 7280048 bpo-35904: Add missing fmean() entry to the summary table (GH-12919) by Raymond Hettinger · 5 years ago
  23. 39baace Document that TestCase.assertCountEqual() can take iterables (GH-686) by jkleint · 5 years ago
  24. b4c7f39 Add module specification: itemgetter -> operator.itemgetter (GH-12823) by Jakub Molinski · 5 years ago
  25. 9013ccf bpo-36546: Add statistics.quantiles() (#12710) by Raymond Hettinger · 5 years ago
  26. d437012 bpo-36679: Rename duplicate test_class_getitem function (GH-12892) by Windson yang · 5 years ago
  27. c442b1c bpo-36680: Rename duplicate test_source_from_cache_path_like_arg function (GH-12893) by Windson yang · 5 years ago
  28. 3d6f61e bpo-36681: Remove duplicate test_regression_29220 function (GH-12894) by Windson yang · 5 years ago
  29. 007d0b0 bpo-36682: Rename duplicate tests in test_sys_setprofile (GH-12895) by Windson yang · 5 years ago
  30. f51dd4f bpo-36683: Rename duplicate test_io_encoding to test_pyio_encoding (GH-12896) by Windson yang · 5 years ago
  31. be372d7 bpo-36678: Rename duplicate tests in test_dataclasses (GH-12899) by Windson yang · 5 years ago
  32. d307d05 Fixes platform.win32_ver on non-Windows platforms (GH-12912) by Steve Dower · 5 years ago
  33. 2644907 bpo-33608: Normalize atomic macros so that they all expect an atomic struct (GH-12877) by Steve Dower · 5 years ago
  34. 34366b7 bpo-36672: Fix a compiler warning in winreg.SetValue() (GH-12882) by Zackery Spytz · 5 years ago
  35. 56ed864 bpo-9194: Fix the bounds checking in winreg.c's fixupMultiSZ() (GH-12687) by Zackery Spytz · 5 years ago
  36. 6ef726a bpo-29734: Cleanup test_getfinalpathname_handles test (GH-12908) by Berker Peksag · 5 years ago
  37. d59b662 bpo-36690: Fix typo in Tools/demo/rpython.py (GH-12903) by 周家未 · 5 years ago
  38. ab86521 bpo-36523: Add docstring to io.IOBase.writelines (GH-12683) by Marcin Niemira · 5 years ago
  39. 662ebd2 Doc: add the missing ".tp_flags" in type definition (GH-12902) by Wu Wei · 5 years ago
  40. 9b21856 bpo-23078: Add support for {class,static}method to mock.create_autospec() (GH-11613) by Xtreak · 5 years ago
  41. 9541bd3 bpo-24011: Use PyModule_Add{Object,IntMacro} in PyInit__signal() (GH-12765) by Joannah Nanjekye · 5 years ago
  42. 5ebfa84 bpo-36645: Fix ambiguous formatting in re.sub() documentation (GH-12879) by mollison · 5 years ago
  43. 3e986de Fix typo (GH-12878) by Fredrik Averpil · 5 years ago
  44. 14adbd4 bpo-36650: Fix handling of empty keyword args in C version of lru_cache. (GH-12881) by Raymond Hettinger · 5 years ago
  45. 9d062d6 ctypes: remove use of legacy unicode API (GH-12340) by Inada Naoki · 5 years ago
  46. e8113f5 bpo-30485: Change the prefix for defining the default namespace in ElementPath from None to '' since there is existing code that uses that and it's more convenient to have an all-string-keys dict (e.g. when sorting items etc.). (#12860) by Stefan Behnel · 5 years ago
  47. 7e954e7 bpo-36651: Fixed Asyncio Event Loop documentation inconsistency (GH-12866) by Enrico Alarico Carbognani · 5 years ago
  48. 23bace2 bpo-36635: Add _testinternalcapi module (GH-12841) by Victor Stinner · 5 years ago
  49. 11efd79 bpo-36071 Add support for Windows ARM32 in ctypes/libffi (GH-12059) by Paul Monson · 5 years ago
  50. 264a0b4 bpo-36638: Fix WindowsLoadTracker exception on some Windows versions (GH-12849) by Paul Monson · 5 years ago
  51. 9941f96 Fix wrong indentation of a paragraph in documentation (GH-12868) by cocoatomo · 5 years ago
  52. a6de52c bpo-32913: Added re.Match.groupdict example to regex HOWTO (GH-5821) by josh · 5 years ago
  53. 4c3efd9 bpo-36649: Remove trailing spaces for registry keys when installed via the Store (GH-12865) by Steve Dower · 5 years ago
  54. 5c75f37 bpo-36635: Change pyport.h for Py_BUILD_CORE_MODULE define (GH-12853) by Victor Stinner · 5 years ago
  55. 3092d6b bpo-32849: Fix is_valid_fd() on FreeBSD (GH-12852) by Victor Stinner · 5 years ago
  56. 197f044 bpo-35755: Don't say "to mimick Unix which command behavior" (GH-12861) by Victor Stinner · 5 years ago
  57. 693c104 bpo-31904: Port test_resource to VxWorks (GH-12719) by Lihua Zhao · 5 years ago
  58. 2954550 bpo-31904: Port test_cmd_line to VxWorks (#12648) by Lihua Zhao · 5 years ago
  59. 2c4c02f bpo-35755: Remove current directory from posixpath.defpath (GH-11586) by Victor Stinner · 5 years ago
  60. 228a3c9 bpo-35755: shutil.which() uses os.confstr("CS_PATH") (GH-12858) by Victor Stinner · 5 years ago
  61. 71ce03d Clarify file-closing example in tutorial (GH-11652) by Colin Watson · 5 years ago
  62. 36c41bc bpo-31904: Fix test_tabnanny on VxWorks (GH-12646) by Lihua Zhao · 5 years ago
  63. 6fec905 bpo-36642: make unicodedata const (GH-12855) by Inada Naoki · 5 years ago
  64. 926b0cb bpo-36641: Add "const" to PyDoc_VAR macro (GH-12854) by Inada Naoki · 5 years ago
  65. 31e8d69 bpo-33783: Use proper class markup for random.Random docs (GHè7817) by Matthias Bussonnier · 5 years ago
  66. 2f5b448 Add myself to CODEOWNERS for sqlite3 and urllib.robotparser (GH-12856) by Berker Peksag · 5 years ago
  67. 2b7f93b bpo-36345: Update wsgiref example (GH-12562) by Stéphane Wirtel · 5 years ago
  68. 6fa84bd bpo-27860: ipaddress: fix Interface missed some attributes (GH-12836) by Inada Naoki · 5 years ago
  69. 74125a6 bpo-36348: IMAP4.logout() doesn't ignore exc (GH-12411) by Victor Stinner · 5 years ago
  70. 0810fa7 bpo-36389: Cleanup gc.set_threshold() (GH-12844) by Victor Stinner · 5 years ago
  71. aba7d66 bpo-35134: Add cpython/pymem.h to build system (GH-12842) by Victor Stinner · 5 years ago
  72. 9820c07 bpo-35134: Add Include/cpython/pymem.h (GH-12840) by Victor Stinner · 5 years ago
  73. a3283ef Doc: update PendingDeprecationWarning explanation (GH-12837) by Inada Naoki · 5 years ago
  74. a9a2880 bpo-36625: Remove obsolete comments from docstrings in fractions module (GH-12822) by Jakub Molinski · 5 years ago
  75. 3c7931e bpo-36629: Add support.get_socket_conn_refused_errs() (GH-12834) by Victor Stinner · 5 years ago
  76. f1464f4 bpo-31904: Port the time module on VxWorks (GH-12305) by pxinwr · 5 years ago
  77. 236d0b7 bpo-31904: Don't build the _crypt extension on VxWorks (GH-12833) by pxinwr · 5 years ago
  78. 2430d53 bpo-27860: use cached_property (GH-12832) by Inada Naoki · 5 years ago
  79. 3c5a858 bpo-30485: Re-allow empty strings in ElementPath namespace mappings since they might actually be harmless and unused (and thus went undetected previously). (#12830) by Stefan Behnel · 5 years ago
  80. cd46655 bpo-16079: fix duplicate test method name in test_gzip. (GH-12827) by Gregory P. Smith · 5 years ago
  81. 929b704 bpo-31658: Make xml.sax.parse accepting Path objects (GH-8564) by Mickaël Schoentgen · 5 years ago
  82. e9927e1 bpo-30485: support a default prefix mapping in ElementPath by passing None as prefix (#1823) by Stefan Behnel · 5 years ago
  83. ffca16e bpo-36227: ElementTree.tostring() default_namespace and xml_declaration arguments (GH-12225) by Bernt Røskar Brenna · 5 years ago
  84. 830b43d bpo-36593: Fix isinstance check for Mock objects with spec executed under tracing (GH-12790) by Xtreak · 5 years ago
  85. fde9b33 bpo-36427: Document that PyEval_RestoreThread and PyGILState_Ensure can terminate the calling thread (GH-12541) by Pablo Galindo · 5 years ago
  86. 46544f6 Skip test_preadv_flags if RWF_HIPRI is not supported by the system (GH-12762) by Pablo Galindo · 5 years ago
  87. f2cf1e3 bpo-36623: Clean parser headers and include files (GH-12253) by Pablo Galindo · 5 years ago
  88. f8716c8 bpo-18610: Update wsgiref.validate docstring for wsgi.input read() (GH-11663) by Cheryl Sabella · 5 years ago
  89. e59ec1b bpo-35734: ipaddress: remove unused methods (GH-11591) by Rémi Lapeyre · 5 years ago
  90. c88fece Doc: define PY_SSIZE_T_CLEAN always (GH-12794) by Inada Naoki · 5 years ago
  91. a304b13 bpo-36618: Don't add -fmax-type-align flag to old clang (GH-12811) by Victor Stinner · 5 years ago
  92. 1e82954 bpo-35581: Document @typing.type_check_only (GH-11312) by Sebastian Rittau · 5 years ago
  93. 1e2ad6c bpo-33922: Adding documentation for new "-64" suffix of Python launcher (GH-7849) by mrh1997 · 5 years ago
  94. 472f794 bpo-18748: test_io: silence destructor errors (GH-12805) by Victor Stinner · 5 years ago
  95. e8f9acf bpo-36611: Disable serialno field of debug memory allocators (#12796) by Victor Stinner · 5 years ago
  96. 0fc91ee bpo-36389: Add _PyObject_CheckConsistency() function (GH-12803) by Victor Stinner · 5 years ago
  97. 23a683a bpo-36618: Add -fmax-type-align=8 flag for clang (GH-12809) by Victor Stinner · 5 years ago
  98. 606c66a Allow Windows layout builds to fully skip code signing (GH-12808) by Steve Dower · 5 years ago
  99. f4e5661 bpo-36509: Add iot layout for Windows IoT containers (GH-12663) by Paul Monson · 5 years ago
  100. aa25d5d Enable building nuget packages for ARM32 (GH-12669) by Paul Monson · 5 years ago