1. 3ec9af7 bpo-9263: _Py_NegativeRefcount() use _PyObject_AssertFailed() (GH-10109) by Victor Stinner · 6 years ago
  2. c89a932 bpo-35053: Define _PyTraceMalloc_NewReference in object.h (GH-10107) by Victor Stinner · 6 years ago
  3. 6c83d9f bpo-35022: unittest.mock.MagicMock now also supports __fspath__ (GH-9960) by Max Bélanger · 6 years ago
  4. 1770d1c bpo-35038: AttributeError: 'frame' object has no attribute 'f_restricted'. (GH-10098) by Stéphane Wirtel · 6 years ago
  5. 9e95eb0 Fix grammar in using/unix build instruction docs (GH-10009) by Stéphane Wirtel · 6 years ago
  6. 626bff8 bpo-9263: Dump Python object on GC assertion failure (GH-10062) by Victor Stinner · 6 years ago
  7. 18618e65 bpo-35059: Add Py_STATIC_INLINE() macro (GH-10093) by Victor Stinner · 6 years ago
  8. d03b775 bpo-31047: Fix ntpath.abspath to trim ending separator (GH-10082) by Tim Graham · 6 years ago
  9. e25d5fc bpo-32321: Add pure Python fallback for functools.reduce (GH-8548) by madman-bob · 6 years ago
  10. 6279c1c bpo-35053: Add Include/tracemalloc.h (GH-10091) by Victor Stinner · 6 years ago
  11. 9e00e80 bpo-35053: Enhance tracemalloc to trace free lists (GH-10063) by Victor Stinner · 6 years ago
  12. d7c3e5f importlib: Fix typo in SourceLoader.path_stats docstring (GH-10052) by Quentin · 6 years ago
  13. 5ad36f9 bpo-28015: Support LTO build with clang (GH-9908) by serge-sans-paille · 6 years ago
  14. 890423f configparser doc: Properly label ConfigParser attributes (GH-9930) by Ned Batchelder · 6 years ago
  15. 78401f7 importlib doc: Fix approximated import_module() code (GH-9945) by orlnub123 · 6 years ago
  16. e80e77a bpo-35027, distutils doc: Correct note on setup.py change in Python 3.7 (GH-10032) by TilmanK · 6 years ago
  17. 9f270a2 turtledemo/penrose.py: remove unused clock() calls (GH-10033) by Srinivas Thatiparthy (శ్రీనివాస్ తాటిపర్తి) · 6 years ago
  18. 9f43fbb Use f-strings in asyncio-task code examples (GH-10035) by Mariatta · 6 years ago
  19. 057f407 bpo-32797: improve documentation of linecache.getline (GH-9540) by jdemeyer · 6 years ago
  20. dfba1f6 bpo-33899: Mention tokenize behavior change in What's New (GH-10073) by Tal Einat · 6 years ago
  21. c46db92 bpo-30863: Rewrite PyUnicode_AsWideChar() and PyUnicode_AsWideCharString(). (GH-2599) by Serhiy Storchaka · 6 years ago
  22. df13df4 bpo-34794: Fix a leak in Tkinter. (GH-10025) by Serhiy Storchaka · 6 years ago
  23. 9f3ed3e Fix error handling bugs in _elementtree.c. (GH-10060) by Zackery Spytz · 6 years ago
  24. 82af0b6 bpo-9263: _PyObject_Dump() detects freed memory (GH-10061) by Victor Stinner · 6 years ago
  25. 96f2c73 Add macos-team as a code owner (GH-10045) by Ned Deily · 6 years ago
  26. fa53294 bpo-34980: P/Invoke QueryFullProcessImageName to get process names (GH-9901) by Jeremy Kloth · 6 years ago
  27. 4f399be bpo-34260, shutil: fix copy2 and copystat documentation (GH-8523) by Zsolt Cserna · 6 years ago
  28. b79b5c0 bpo-35028: cgi: Fix max_num_fields off by one error (GH-9973) by matthewbelisle-wf · 6 years ago
  29. b7d6205 bpo-35046: do only one system call per line (logging.StreamHandler) (GH-10042) by Josh Snyder · 6 years ago
  30. 3b0047d bpo-34482: test datetime classes' handling of non-UTF-8-encodable strings (GH-8878) by Alexey Izbyshev · 6 years ago
  31. 83a0765 bpo-34748: link to :ref:`partial-objects` in functools.partial doc. (GH-9809) by Andrei Petre · 6 years ago
  32. 3df8540 bpo-34454: Clean up datetime.fromisoformat surrogate handling (GH-8959) by Paul Ganssle · 6 years ago
  33. 5a95ba2 Fix issue 34551 - remove redundant store (#9009) by Eric Lippert · 6 years ago
  34. 2447773 bpo-29843: raise AttributeError if given negative _length_ (GH-10029) by Tal Einat · 6 years ago
  35. 121eb16 bpo-34081: Fix wrong example link that was linking to distutils (GH-8248) by Xtreak · 6 years ago
  36. c3f52a5 bpo-35036: Remove empty log line in the suspicious.py tool (GH-10024) by Xtreak · 6 years ago
  37. 2c2044e bpo-34984: Improve error messages for bytes and bytearray constructors. (GH-9874) by Serhiy Storchaka · 6 years ago
  38. 914f9a0 bpo-34973: Fix crash in bytes constructor. (GH-9841) by Serhiy Storchaka · 6 years ago
  39. a323cdc bpo-8525: help() on a type now shows builtin subclasses (GH-5066) by Sanyam Khurana · 6 years ago
  40. d31e773 bpo-35029: Replace the SyntaxWarning exception with a SyntaxError. (GH-9999) by Serhiy Storchaka · 6 years ago
  41. 2f73ed6 Update codeowners to match experts list change (#10022) by Nick Coghlan · 6 years ago
  42. 9445118 closes bpo-35025: Properly guard the `CLOCK_GETTIME` et al macros in timemodule.c. (GH-9961) by Max Bélanger · 6 years ago
  43. 12d0ff1 Remove ">>>" from testsetup. (GH-10017) by Benjamin Peterson · 6 years ago
  44. 890a4b9 bpo-35020: Link to sorting examples from list.sort() (GH-9931) by Xtreak · 6 years ago
  45. eeab510 bpo-34576 - Fix the formatting for security considerations in http.server.rst (#10005) by Senthil Kumaran · 6 years ago
  46. 0bd4826 Encrypt Zulip webhook address (GH-10010) by Zachary Ware · 6 years ago
  47. d262250 bpo-35032: Remove inaccessible videos from faq/Windows (GH-10004) by Stéphane Wirtel · 6 years ago
  48. 0522fd8 bpo-34839: Add a 'before 3.6' in the section 'warnings' of doctest (GH-9736) by Stéphane Wirtel · 6 years ago
  49. a5259fb bpo-34574: Prevent OrderedDict iterators from exhaustion during pickling. (GH-9051) by Sergey Fedoseev · 6 years ago
  50. 8c9fd9c bpo-34909: NEWS entry (GH-9995) by Ned Deily · 6 years ago
  51. aa95bfb bpo-32256: Make patchcheck.py work for out-of-tree builds (GH-4760) by Alexey Izbyshev · 6 years ago
  52. d5b4f1b bpo-34983: Expose symtable.Symbol.is_nonlocal() in the symtable module (GH-9872) by Pablo Galindo · 6 years ago
  53. 6395844 bpo-34573: Simplify __reduce__() of set and dict iterators. (GH-9050) by Sergey Fedoseev · 6 years ago
  54. 027664a bpo-32798: Add restriction on the offset parameter for mmap.flush in the docs (#5621) by Pablo Galindo · 6 years ago
  55. 13ae4d4 bpo-21196: Clarify name mangling rules in tutorial (GH-5667) by Berker Peksag · 6 years ago
  56. 8346031 bpo-32890, os: Use errno instead of GetLastError() in execve() and truncate() (GH-5784) by Alexey Izbyshev · 6 years ago
  57. a267056 bpo-32236: open() emits RuntimeWarning if buffering=1 for binary mode (GH-4842) by Alexey Izbyshev · 6 years ago
  58. 4acf6c9 bpo-34536: Cleanup test_enum imports (GH-9979) by Victor Stinner · 6 years ago
  59. ded87d8 bpo-33594: Add deprecation info in inspect.py module (GH-7036) by Matthias Bussonnier · 6 years ago
  60. 0f14fc1 bpo-33726, doc: Add short descriptions to PEP references in seealso (GH-7294) by Andrés Delfino · 6 years ago
  61. 6f17e51 bpo-33712: OrderedDict only creates od_fast_nodes cache if needed (GH-7349) by Serhiy Storchaka · 6 years ago
  62. d6a61f2 Elaborate datetime.timedelta docstring (GH-7458) by Chris Barker · 6 years ago
  63. 8deab96 bpo-34070: open() only checks for isatty if buffering < 0 (GH-8187) by David Herberth · 6 years ago
  64. acef690 queue doc: Clarify that the simple FIFO queue is SimpleQueue (GH-8372) by Julien Palard · 6 years ago
  65. 96200eb unittest.mock doc: Fix references to recursive seal of Mocks (GH-9028) by Mario Corchero · 6 years ago
  66. 5a30620 bpo-25750: Add test on bad descriptor __get__() (GH-9084) by jdemeyer · 6 years ago
  67. b2e2025 bpo-33073: Rework int.as_integer_ratio() implementation (GH-9303) by Serhiy Storchaka · 6 years ago
  68. b981fec Use dict unpacking in functools.partial() docs (GH-9412) by Sergey Fedoseev · 6 years ago
  69. 3bd0d62 Fix typos in comments (GH-9905) by Quan Tian · 6 years ago
  70. f192aeb bpo-20216: Correct docstrings of digest() methods in hashlib. (GH-9873) by Srinivas Thatiparthy (శ్రీనివాస్ తాటిపర్తి) · 6 years ago
  71. dd13c88 bpo-33947: dataclasses no longer can raise RecursionError in repr (GF9916) by Srinivas Thatiparthy (శ్రీనివాస్ తాటిపర్తి) · 6 years ago
  72. 55f8249 bpo-34741: Get rid of tp_getattro and tp_setattro in pyexpat.xmlparser. (GH-9422) by Serhiy Storchaka · 6 years ago
  73. 6543912 bpo-32912: Replace a DeprecationWarning with a SyntaxWarning (GH-9652) by Serhiy Storchaka · 6 years ago
  74. 2091448 bpo-34866: Adding max_num_fields to cgi.FieldStorage (GH-9660) by matthewbelisle-wf · 6 years ago
  75. f081fd8 bpo-35013: Add more type checks for children of Element. (GH-9944) by Serhiy Storchaka · 6 years ago
  76. 68def05 Fix several reference counting bugs in pyexpat.c. (GH-9955) by Zackery Spytz · 6 years ago
  77. d16f012 bpo-31522: mailbox.get_string: pass `from_` parameter to `get_bytes` (#9857) by Cheryl Sabella · 6 years ago
  78. 5be0024 bpo-26441: Remove documentation for deleted to_splittable and from_splittable methods (#9865) by Braden Groom · 6 years ago
  79. e3d1455 Update opcode.h header comment to mention the source data file (GH-9935) by Shivank98 · 6 years ago
  80. 1deea5e bpo-34936: Fix TclError in tkinter.Spinbox.selection_element(). (GH-9760) by Juliette Monsel · 6 years ago
  81. bbd90e4 Updated documentation on logging.debug(). (GH-9946) by Vinay Sajip · 6 years ago
  82. b7ad31c bpo-34765: Update the install-sh file (GH-9592) by stratakis · 6 years ago
  83. 6f906b3 bpo-35008: Fix possible leaks in Element.__setstate__(). (GH-9924) by Serhiy Storchaka · 6 years ago
  84. 9d4712b bpo-35011: Restore use of pyexpatns.h in libexpat (GH-9939) by Gregory P. Smith · 6 years ago
  85. 74a8b6e bpo-24658: Fix read/write greater than 2 GiB on macOS (GH-1705) by Stéphane Wirtel · 6 years ago
  86. 0f11a88 Add missing comma to wsgiref doc (GH-9932) by Cheryl Sabella · 6 years ago
  87. fcd5e84 bpo-23420: Verify the value of '-s' when execute the CLI of cProfile (GH-9925) by Stéphane Wirtel · 6 years ago
  88. 8e73ad3 Doc: Fix is_prime (GH-9909) by Julien Palard · 6 years ago
  89. c984d20 In email docs, correct spelling of foregoing (#9856) by Cheryl Sabella · 6 years ago
  90. a5ca985 In email.parser in message_from_bytes, update `strict` to `policy` (#9854) by Cheryl Sabella · 6 years ago
  91. 137b063 bpo-34997: Fix test_logging.ConfigDictTest.test_out_of_order (GH-9913) by Pablo Galindo · 6 years ago
  92. 1a4a10d Added CLI starter example to logging cookbook. (GH-9910) by Vinay Sajip · 6 years ago
  93. ea75187 bpo-34783: Fix test_nonexisting_script() (GH-9896) by Victor Stinner · 6 years ago
  94. 43a5bd7 bpo-23554: Change echo server example class name from EchoServerClientProtocol to EchoServerProtocol (GH-9859) by Braden Groom · 6 years ago
  95. 2e438cc bpo-34989: python-gdb.py: fix current_line_num() (GH-9889) by Victor Stinner · 6 years ago
  96. ee171a2 Stop using deprecated logging API in Sphinx suspicious checker (GH-9875) by Pablo Galindo · 6 years ago
  97. 6bdb6f7 fix dangling keyfunc examples in documentation of heapq and sorted (#1432) by Wolfgang Maier · 6 years ago
  98. 18fb1fb bpo-34844: logging.Formatter enhancement - Ensure style and format string matches in logging.Formatter (GH-9703) by BNMetrics · 6 years ago
  99. e890421 bpo-34974: Do not replace unexpected errors in bytes() and bytearray(). (GH-9852) by Serhiy Storchaka · 6 years ago
  100. de2aea0 bpo-34939: Allow annotated global names in module namespace (GH-9844) by Pablo Galindo · 6 years ago