summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* bpo-41402: Fix email ContentManager calling .encode() on bytes (GH-21631)Johannes Reiff2021-08-093-3/+14
* bpo-38840: Incorrect __all__ in multiprocessing.managers (GH-18034)Zackery Spytz2021-08-092-3/+5
* bpo-44522: Fix inaccurate information in open() function (GH-27650)meowmeowmeowcat2021-08-091-3/+3
* Remove unused variable. (GH-27677)Mark Shannon2021-08-091-3/+0
* bpo-44702: Remove ambiguity in sentence (GH-27676)meowmeowmeowcat2021-08-091-3/+3
* bpo-32695: Docs and tests for compresslevel and preset kwargs in tarfile (GH-...Zackery Spytz2021-08-093-3/+23
* bpo-44826: Specialize STORE_ATTR (GH-27590)Mark Shannon2021-08-099-83/+335
* bpo-44840: Compiler: Move duplication of exit blocks with no line numbers to ...Mark Shannon2021-08-096-6705/+6720
* bpo-42053: Remove misleading check in os.fwalk() (GH-27669)Serhiy Storchaka2021-08-081-2/+1
* bpo-44859: Improve error handling in sqlite3 and and raise more accurate exce...Serhiy Storchaka2021-08-0810-52/+226
* bpo-44830 - Remove the broken Broken Mozilla devguide link. (GH-27664)Senthil Kumaran2021-08-081-4/+0
* bpo-44856: Possible reference leak in error paths of update_bases() and __bui...Pablo Galindo Salgado2021-08-072-22/+14
* bpo-42971: Add errno.EQFULL (macOS) (GH-24419)Ronald Oussoren2021-08-063-0/+10
* bpo-41576: document BaseException in favor of bare except (GH-21917)Thomas Grainger2021-08-062-8/+10
* bpo-27752: improve documentation of csv.Dialect (GH-26795)Jack DeVries2021-08-062-11/+24
* bpo-44605: Teach @total_ordering() to work with metaclasses (GH-27633)Raymond Hettinger2021-08-063-12/+41
* bpo-44839: Raise more specific errors in sqlite3 (GH-27613)Serhiy Storchaka2021-08-063-37/+79
* Upgrade bundled pip and setuptools (#27625)Tzu-ping Chung2021-08-065-2/+3
* bpo-44756: [docs] revert automated virtual environment creation on `make html...Łukasz Langa2021-08-063-5/+16
* bpo-44524: Fix an issue wherein `_GenericAlias._name` was not properly set fo...Bas van Beek2021-08-063-61/+191
* bpo-44849: Fix os.set_inheritable() on FreeBSD 14 with O_PATH (GH-27623)Victor Stinner2021-08-062-3/+8
* bpo-40928: notify users running test_decimal on macOS of malloc warnings (GH-...Jack DeVries2021-08-063-1/+26
* bpo-44584: Deprecate PYTHONTHREADDEBUG env var (GH-27065)Victor Stinner2021-08-067-1/+49
* bpo-44679: [doc] fix typo in unittest.mock.rst (GH-27618)Jack DeVries2021-08-051-1/+1
* bpo-44838: Refine the custom syntax errors for invalid 'if' expressions (GH-2...Pablo Galindo Salgado2021-08-054-554/+621
* bpo-44291: Fix reconnection in logging.handlers.SysLogHandler (GH-26490)Kirill Pinchuk2021-08-052-25/+46
* bpo-44822: Don't truncate `str`s with embedded NULL chars returned by `sqlite...Erlend Egeberg Aasland2021-08-053-3/+41
* platform: Import subprocess in function. (GH-27610)Inada Naoki2021-08-051-1/+1
* bpo-41706: Fix special method invocation docs to mention using type() (GH-22084)William Chargin2021-08-042-3/+6
* bpo-42958: Improve description of shallow= in filecmp.cmp docs (GH-27166)andrei kulakov2021-08-043-4/+10
* [doc] bpo-43066: zipfile - add note on leading slash in the filename arg (GH-...andrei kulakov2021-08-042-1/+7
* Fix typo in 'xml.dom.minidom' documentation (GH-27602)Cristián Maureira-Fredes2021-08-041-1/+1
* bpo-44564 Move formatted assertion under deprecation warning context (GH-27090)Brandon Schabell2021-08-041-1/+1
* Fix 404 link to the pyporting mailing list (GH-27320)Rohit Nishad2021-08-041-3/+3
* bpo-44801: Check arguments in substitution of ParamSpec in Callable (GH-27585)Serhiy Storchaka2021-08-044-37/+89
* Note that tp_clear and m_clear are not always called (GH-27581)Petr Viktorin2021-08-042-0/+12
* Fix hyperlink conflict in turtle docs (GH-27592)Harry2021-08-041-12/+16
* bpo-41117: Cleanup subtract_refs() (GH-27593)Victor Stinner2021-08-041-3/+3
* bpo-44821: Eagerly assign __dict__ for new objects. (GH-27589)Mark Shannon2021-08-046-8/+49
* Add option to write specialization stats to files and script to summarize. (G...Mark Shannon2021-08-044-12/+75
* bpo-41886: Fix documented type of PyType_Type (GH-22454)da-woods2021-08-031-1/+1
* Ensure LICENSE.txt file is generated even in PGO builds (GH-27580)Steve Dower2021-08-031-4/+3
* bpo-44808: fixes test for interactive inspect getsource of a class (GH-27571)andrei kulakov2021-08-031-12/+8
* bpo-41737: expand doc for NotADirectoryError (GH-27471)andrei kulakov2021-08-031-2/+4
* bpo-27275: Change popitem() and pop() methods of collections.OrderedDict (GH-...Serhiy Storchaka2021-08-034-71/+124
* closes bpo-39091: Fix segfault when Exception constructor returns non-excepti...Noah2021-08-034-4/+44
* bpo-44782: Improve OrderedDict recipe for LRU cache variants (GH-27536)Raymond Hettinger2021-08-021-16/+32
* bpo-44792: Improve syntax errors for if expressions (GH-27506)Miguel Brito2021-08-025-0/+48
* bpo-35183: Add typical examples to os.path.splitext docs (GH-27286)Jake Stockwin2021-08-022-7/+27
* Document PyMember_GetOne and PyMember_SetOne (GH-27555)Ken Jin2021-08-021-0/+15