summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* gh-91877: Fix WriteTransport.get_write_buffer_{limits,size} docs (#92338) (#9...Kumar Aditya2022-06-161-0/+4
* gh-91810: Fix regression with writing an XML declaration with encoding='unico...Miss Islington (bot)2022-06-163-20/+10
* gh-91577: SharedMemory move imports out of methods (GH-91579)Miss Islington (bot)2022-06-162-4/+4
* [3.10] gh-93735: Split Docs CI to speed-up the build (GH-93736) (GH-93833)Adam Turner2022-06-161-7/+35
* [3.11] gh-93741: Add private C API _PyImport_GetModuleAttrString() (GH-93742)...Miss Islington (bot)2022-06-162-0/+34
* gh-93857: Fix broken audit-event targets in sqlite3 docs (GH-93859)Miss Islington (bot)2022-06-151-2/+2
* gh-87260: Update sqlite3 signature docs to reflect actual implementation (GH-...Miss Islington (bot)2022-06-152-9/+10
* [3.10] gh-89018: Improve documentation of `sqlite3` exceptions (GH-27645) (#9...Erlend Egeberg Aasland2022-06-151-17/+48
* gh-93183: Adjust wording in socket docs (GH-93832)Miss Islington (bot)2022-06-151-2/+2
* [3.10] gh-93795: Use test.support TESTFN/unlink in sqlite3 tests (GH-93796). ...Erlend Egeberg Aasland2022-06-141-17/+15
* [3.10] gh-79579: Improve DML query detection in sqlite3 (GH-93623) (#93801)Erlend Egeberg Aasland2022-06-143-75/+1939
* gh-93353: Fix importlib.resources._tempfile() finalizer (GH-93377)Miss Islington (bot)2022-06-132-2/+8
* Change list to view object (GH-93661)Miss Islington (bot)2022-06-112-2/+3
* gh-92930: _pickle.c: Acquire strong references before calling save() (GH-92931)Miss Islington (bot)2022-06-113-11/+98
* gh-92886: Fix tests that fail when running with optimizations (`-O`) in `test...Miss Islington (bot)2022-06-102-1/+5
* gh-91317: Document that Path does not collapse initial `//` (GH-32193)Miss Islington (bot)2022-06-102-3/+32
* [3.10] gh-93671: Avoid exponential backtracking in deeply nested sequence pat...Pablo Galindo Salgado2022-06-104-2/+37
* bpo-42658: Use LCMapStringEx in ntpath.normcase to match OS behaviour for cas...Steve Dower2022-06-105-9/+157
* [3.10] Improve logging documentation with example and additional cookbook re...Miss Islington (bot)2022-06-103-2/+101
* gh-87961: Remove outdated notes from functions that aren't in the Limited API...Miss Islington (bot)2022-06-103-26/+0
* gh-90494: Reject 6th element of the __reduce__() tuple (GH-93609) (GH-93632)Miss Islington (bot)2022-06-104-2/+27
* gh-90549: Fix leak of global named resources using multiprocessing spawn (GH-...Miss Islington (bot)2022-06-104-2/+54
* gh-90763: Modernise xx template module initialisation (GH-93078)Miss Islington (bot)2022-06-102-43/+54
* Doc: Update references and examples of old, unsupported OSes and uarches (GH-...Miss Islington (bot)2022-06-097-18/+29
* [3.10] gh-93421: Update sqlite3 cursor.rowcount only after SQLITE_DONE (GH-93...Erlend Egeberg Aasland2022-06-083-9/+25
* [3.10] Fix `PurePath.relative_to` links in the pathlib documentation (GH-9326...jacksonriley2022-06-071-2/+2
* gh-57539: Increase calendar test coverage (GH-93468) (GH-93565)Miss Islington (bot)2022-06-073-0/+15
* gh-88831: In docs for asyncio.create_task, explain why strong references to t...Miss Islington (bot)2022-06-072-1/+19
* gh-92914: Round the allocated size for lists up to the even number (GH-92915)...Miss Islington (bot)2022-06-073-3/+11
* gh-86986: bump min sphinx version to 3.2 (GH-93337) (GH-93562)Miss Islington (bot)2022-06-072-1/+2
* Merge remote-tracking branch 'upstream/3.10' into 3.10Pablo Galindo2022-06-065-6/+8
|\
| * gh-93391: fix typo in `array` docs (GH-93392) (GH-93395)Miss Islington (bot)2022-06-061-1/+1
| * gh-93372: Fix typo in os.rename documentation (GH-93401) (GH-93404)Miss Islington (bot)2022-06-061-1/+1
| * gh-83728: Add hmac.new default parameter deprecation (GH-91939) (GH-93545)Miss Islington (bot)2022-06-061-0/+2
| * [3.10] gh-93108: Bump sphinx to fix rendering issue. (GH-93159)Julien Palard2022-06-061-3/+3
| * 📝 Make sure the phrase "constant-time compare" actually appears in the doc...Miss Islington (bot)2022-06-061-1/+1
* | Post 3.10.5Pablo Galindo2022-06-061-1/+1
* | Python 3.10.5v3.10.5Pablo Galindo2022-06-0682-215/+856
|/
* gh-93247: Fix assert function in asyncio locks test (GH-93248)Miss Islington (bot)2022-06-061-1/+1
* gh-89973: Fix re.error in the fnmatch module. (GH-93072)Miss Islington (bot)2022-06-053-7/+140
* Fix missing word in sys.float_info docstring (GH-93489) (GH-93496)Miss Islington (bot)2022-06-041-1/+1
* gh-92886: Fix test that fails when running with `-O` in `test_imaplib.py` (GH...Miss Islington (bot)2022-06-042-0/+2
* gh-93156 - fix negative indexing into absolute `pathlib.PurePath().parents` (...Miss Islington (bot)2022-06-033-0/+9
* test.pythoninfo: Fix typo, Py_REF_DEBUG => Py_TRACE_REFS (GH-93467)Miss Islington (bot)2022-06-031-1/+1
* gh-93418: Fix an assert when an f-string expression is followed by an '=', bu...Miss Islington (bot)2022-06-023-1/+6
* Remove the execution bit to some socket-related files. (GH-93368)Miss Islington (bot)2022-06-013-0/+0
* Remove VOC reference (93333)Miss Islington (bot)2022-05-311-2/+1
* Fix typo in Lib/idlelib/idle_test/test_parenmatch.py (GH-93332) (#93340)Miss Islington (bot)2022-05-301-2/+2
* bpo-42272: fix misleading warning filter message/module docs (GH-23172)Miss Islington (bot)2022-05-302-6/+13
* [3.10] gh-93217: fix some issues in man page and --help (GH-93219) (#93261)Éric2022-05-292-7/+10