1. 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
  2. 23bace2 bpo-36635: Add _testinternalcapi module (GH-12841) by Victor Stinner · 5 years ago
  3. 264a0b4 bpo-36638: Fix WindowsLoadTracker exception on some Windows versions (GH-12849) by Paul Monson · 5 years ago
  4. 197f044 bpo-35755: Don't say "to mimick Unix which command behavior" (GH-12861) by Victor Stinner · 5 years ago
  5. 693c104 bpo-31904: Port test_resource to VxWorks (GH-12719) by Lihua Zhao · 5 years ago
  6. 2954550 bpo-31904: Port test_cmd_line to VxWorks (#12648) by Lihua Zhao · 5 years ago
  7. 2c4c02f bpo-35755: Remove current directory from posixpath.defpath (GH-11586) by Victor Stinner · 5 years ago
  8. 228a3c9 bpo-35755: shutil.which() uses os.confstr("CS_PATH") (GH-12858) by Victor Stinner · 5 years ago
  9. 36c41bc bpo-31904: Fix test_tabnanny on VxWorks (GH-12646) by Lihua Zhao · 5 years ago
  10. 6fa84bd bpo-27860: ipaddress: fix Interface missed some attributes (GH-12836) by Inada Naoki · 5 years ago
  11. 74125a6 bpo-36348: IMAP4.logout() doesn't ignore exc (GH-12411) by Victor Stinner · 5 years ago
  12. a9a2880 bpo-36625: Remove obsolete comments from docstrings in fractions module (GH-12822) by Jakub Molinski · 5 years ago
  13. 3c7931e bpo-36629: Add support.get_socket_conn_refused_errs() (GH-12834) by Victor Stinner · 5 years ago
  14. f1464f4 bpo-31904: Port the time module on VxWorks (GH-12305) by pxinwr · 5 years ago
  15. 2430d53 bpo-27860: use cached_property (GH-12832) by Inada Naoki · 5 years ago
  16. 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
  17. cd46655 bpo-16079: fix duplicate test method name in test_gzip. (GH-12827) by Gregory P. Smith · 5 years ago
  18. 929b704 bpo-31658: Make xml.sax.parse accepting Path objects (GH-8564) by Mickaël Schoentgen · 5 years ago
  19. e9927e1 bpo-30485: support a default prefix mapping in ElementPath by passing None as prefix (#1823) by Stefan Behnel · 5 years ago
  20. ffca16e bpo-36227: ElementTree.tostring() default_namespace and xml_declaration arguments (GH-12225) by Bernt Røskar Brenna · 5 years ago
  21. 830b43d bpo-36593: Fix isinstance check for Mock objects with spec executed under tracing (GH-12790) by Xtreak · 5 years ago
  22. 46544f6 Skip test_preadv_flags if RWF_HIPRI is not supported by the system (GH-12762) by Pablo Galindo · 5 years ago
  23. f8716c8 bpo-18610: Update wsgiref.validate docstring for wsgi.input read() (GH-11663) by Cheryl Sabella · 5 years ago
  24. e59ec1b bpo-35734: ipaddress: remove unused methods (GH-11591) by Rémi Lapeyre · 5 years ago
  25. 472f794 bpo-18748: test_io: silence destructor errors (GH-12805) by Victor Stinner · 5 years ago
  26. e8f9acf bpo-36611: Disable serialno field of debug memory allocators (#12796) by Victor Stinner · 5 years ago
  27. b75b1a35 bpo-33608: Revert "Factor out a private, per-interpreter _Py_AddPendingCall()." (gh-12806) by Eric Snow · 5 years ago
  28. f938d8b Correct grammar in concurrent/futures/process.py docstring (GH-12761) by Thomas Grainger · 5 years ago
  29. b015fc8 bpo-36549: str.capitalize now titlecases the first character instead of uppercasing it (GH-12804) by Kingsley M · 5 years ago
  30. f13c5c8 bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall(). (gh-12360) by Eric Snow · 5 years ago
  31. 4423504 bpo-18748: io.IOBase destructor now logs close() errors in dev mode (GH-12786) by Victor Stinner · 5 years ago
  32. 9b8314c bpo-36611: Fix test_sys.test_getallocatedblocks() (GH-12797) by Victor Stinner · 5 years ago
  33. 4c409be bpo-36389: Change PyMem_SetupDebugHooks() constants (GH-12782) by Victor Stinner · 5 years ago
  34. 2b00db6 bpo-36389: _PyObject_IsFreed() now also detects uninitialized memory (GH-12770) by Victor Stinner · 5 years ago
  35. a9bd892 bpo-36235: Fix distutils test_customize_compiler() on macOS (GH-12764) by Victor Stinner · 5 years ago
  36. d914596 bpo-36559: random module: optimize sha512 import (GH-12742) by Christian Heimes · 5 years ago
  37. 6955d44 bpo-34144: Fix of venv acvtivate.bat for win 10 (GH-8321) by Lorenz Mende · 5 years ago
  38. 750d74f bpo-12910: update and correct quote docstring (#2568) by Jörn Hees · 5 years ago
  39. bb44478 bpo-36560: regrtest: don't collect the GC twice (GH-12747) by Victor Stinner · 5 years ago
  40. 56065d4 bpo-34139: Remove unix datagram socket from FS before binding (GH-8323) by Quentin Dawans · 5 years ago
  41. 5aaac94 bpo-36560: Fix reference leak hunting in regrtest (GH-12744) by Victor Stinner · 5 years ago
  42. e16467a bpo-34060: Report system load when running test suite for Windows (GH-8357) by Ammar Askar · 5 years ago
  43. a8abe09 bpo-33461: emit DeprecationWarning when json.loads(encoding=...) is used (GH-6762) by Matthias Bussonnier · 5 years ago
  44. 5909ad1 fix code styling (GH-12737) by Inada Naoki · 5 years ago
  45. 7b97ab3 closes bpo-35848: Move all documentation regarding the readinto out of IOBase. (GH-11893) by Steve Palmer · 5 years ago
  46. 8702b67 BPO-17561: set create_server backlog default to None (GH-12735) by Giampaolo Rodola · 5 years ago
  47. 79b5d29 bpo-36565: Fix libregrtest for Python without builtin _abc (GH-12733) by Victor Stinner · 5 years ago
  48. eb7e29f bpo-35934: Add socket.create_server() utility function (GH-11784) by Giampaolo Rodola · 5 years ago
  49. 58721a9 bpo-35416: fix potential resource warnings in distutils (GH-10918) by Mickaël Schoentgen · 5 years ago
  50. 96be340 remove duplicate code in biscet (GH-1270) by Chillar Anand · 5 years ago
  51. b7eec94 bpo-36503: remove references to 'aix3' and 'aix4' (GH-12658) by Michael Felt · 5 years ago
  52. 6463ba3 bpo-27181: Add statistics.geometric_mean() (GH-12638) by Raymond Hettinger · 5 years ago
  53. 9d7b2c0 bpo-35936: Updates to modulefinder (GH-11787) by Brandt Bucher · 5 years ago
  54. 2dad960 bpo-35726: Add test for QueueHandler with multiple handlers (GH-11659) by Xtreak · 5 years ago
  55. d6bf6f2 bpo-36050: optimize HTTPResponse.read() (GH-12698) by Inada Naoki · 5 years ago
  56. 50866e9 bpo-25451: Add transparency methods to tkinter.PhotoImage. (GH-10406) by Zackery Spytz · 5 years ago
  57. ded4737 Fix duplicated test case for re. (GH-12662) by MakDon · 5 years ago
  58. 461c416 bpo-36522: Print all values for headers with multiple values. (GH-12681) by Matt Houglum · 5 years ago
  59. cb0748d bpo-36440: include node names in ParserError messages, instead of numeric IDs (GH-12565) by tyomitch · 5 years ago
  60. 76b387b Have UserDict.__init__() implicitly check for updating w/ bool(kwargs) instead of len() (GH-12139) by Slam · 5 years ago
  61. fcef60f bpo-33261: guard access to __code__ attribute in inspect (GH-6448) by Jeroen Demeyer · 5 years ago
  62. 487b73a bpo-36504: Fix signed integer overflow in _ctypes.c's PyCArrayType_new(). (GH-12660) by Zackery Spytz · 5 years ago
  63. b8311cf bpo-36473: add maximum iteration check for dict .values() and .items() (GH-12619) by Thomas Perl · 5 years ago
  64. 9139f92 bpo-13120: fix typo with test_issue13120() method name (GH-12250) by Daniel Hahler · 5 years ago
  65. 10654c1 bpo-20844: open script file with "rb" mode (GH-12616) by Inada Naoki · 5 years ago
  66. 62f9588 bpo-36026: make descr error message consistent (GH-11930) by Inada Naoki · 5 years ago
  67. 42a139e bpo-36492: Deprecate passing some arguments as keyword arguments. (GH-12637) by Serhiy Storchaka · 5 years ago
  68. ac19d96 bpo-36085: Add additional load flag to ensure DLL loads successfully (GH-12633) by Steve Dower · 5 years ago
  69. e653d4d bpo-36384: Remove check for leading zeroes in IPv4 addresses (GH-12577) by Joel Croteau · 5 years ago
  70. 2524fde bpo-36434: Properly handle writing errors in ZIP files. (GH-12559) by Serhiy Storchaka · 5 years ago
  71. 7a465cb bpo-24214: Fixed the UTF-8 incremental decoder. (GH-12603) by Serhiy Storchaka · 5 years ago
  72. 2438cdf bpo-36085: Enable better DLL resolution on Windows (GH-12302) by Steve Dower · 5 years ago
  73. 32119e1 bpo-35947: Update Windows to the current version of libffi (GH-11797) by Paul Monson · 5 years ago
  74. 2f54908 bpo-36471: Add _Py_RunMain() (GH-12618) by Victor Stinner · 5 years ago
  75. 74510e2 bpo-30427: eliminate redundant type checks in os.path.normcase() (GH-1712) by Wolfgang Maier · 5 years ago
  76. 02b84cb bpo-36366: Return None on stopping unstarted patch object (GH-12472) by Xtreak · 5 years ago
  77. 3eca28c bpo-29515: add missing socket.IPPROTO_* constants on Windows (GH-12183) by Giampaolo Rodola · 5 years ago
  78. 796cc6e bpo-36452: dictiter: track maximum iteration count (GH-12596) by Thomas Perl · 5 years ago
  79. d5a5a33 bpo-31292: Fixed distutils check --restructuredtext for include directives (GH-10605) by Philipp A · 5 years ago
  80. a694f23 Add missing docstrings for TarInfo objects (#12555) by Raymond Hettinger · 5 years ago
  81. d929f18 bpo-36443: Disable C locale coercion and UTF-8 Mode by default (GH-12589) by Victor Stinner · 5 years ago
  82. 4a9a505 bpo-36441: Fixes creating a venv when debug binaries are installed. (#12566) by Steve Dower · 5 years ago
  83. f4333d0 bpo-31904: Fix test_utf8_mode on VxWorks (GH-12428) by hliu0 · 5 years ago
  84. da08470 bpo-36431: Use PEP 448 dict unpacking for merging two dicts. (GH-12553) by Serhiy Storchaka · 5 years ago
  85. 384b81d bpo-36407: Fix writing indentations of CDATA section (xml.dom.minidom). (GH-12514) by Vladimir Surjaninov · 5 years ago
  86. 484f20d bpo-36444: Add _PyCoreConfig._init_main (GH-12572) by Victor Stinner · 5 years ago
  87. 8b9dbc0 bpo-36444: Remove _PyMainInterpreterConfig (GH-12571) by Victor Stinner · 5 years ago
  88. 6a258c8 bpo-36429: Fix starting IDLE with pyshell (#12548) by Terry Jan Reedy · 5 years ago
  89. 6da20a4 bpo-36301: Test Python init with isolated (GH-12569) by Victor Stinner · 5 years ago
  90. f8ba6f5 bpo-36301: Cleanup preconfig.c and coreconfig.c (GH-12563) by Victor Stinner · 5 years ago
  91. 871309c bpo-36433: fix confusing error messages in classmethoddescr_call (GH-12556) by Inada Naoki · 5 years ago
  92. 9f966df Merge tag 'v3.8.0a3' by Łukasz Langa · 5 years ago
  93. 2000495 bpo-36301: Remove _PyCoreConfig.preconfig (GH-12546) by Victor Stinner · 5 years ago
  94. 1075d16 bpo-36301: Add _Py_GetConfigsAsDict() function (GH-12540) by Victor Stinner · 5 years ago
  95. 91759d9 bpo-36143: Regenerate Lib/keyword.py from the Grammar and Tokens file using pgen (GH-12456) by Pablo Galindo · 5 years ago
  96. d1e768a bpo-36326: Let inspect.getdoc() find docstrings for __slots__ (GH-12498) by Raymond Hettinger · 5 years ago
  97. 9a44885 v3.8.0a3 by Łukasz Langa · 5 years ago
  98. dd5417a bpo-36218: Fix handling of heterogeneous values in list.sort (GH-12209) by Rémi Lapeyre · 5 years ago
  99. 9dcc095 Fix line ending (GH-12531) by Raymond Hettinger · 5 years ago
  100. 62be338 bpo-36401: Have help() show readonly properties separately (GH-12517) by Raymond Hettinger · 5 years ago