summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Expand)AuthorAgeFilesLines
* bpo-45816: Support building with VS 2022 (v143 toolset) on Windows (GH-29577)Miss Islington (bot)2022-06-231-0/+1
* [3.10] gh-92858: Improve error message for some suites with syntax error befo...Pablo Galindo Salgado2022-06-231-0/+1
* gh-92888: Fix memoryview bad `__index__` use after free (GH-92946) (GH-93950)Ken Jin2022-06-231-0/+2
* gh-91172: Create a workflow for verifying bundled pip and setuptools (GH-3188...Miss Islington (bot)2022-06-221-0/+2
* gh-93951: In test_bdb.StateTestCase.test_skip, avoid including auxiliary impo...Miss Islington (bot)2022-06-221-0/+1
* gh-94101 Disallow instantiation of SSLSession objects (GH-94102)Miss Islington (bot)2022-06-221-0/+3
* gh-74696: Do not change the current working directory in shutil.make_archive(...Miss Islington (bot)2022-06-221-0/+2
* [3.10] GH-93964: Harden overflow checks before _PyBytes_Resize in compile.c (...Dennis Sweeney2022-06-221-0/+1
* gh-87389: Fix an open redirection vulnerability in http.server. (GH-93879)Miss Islington (bot)2022-06-211-0/+3
* gh-93021: Fix __text_signature__ for __get__ (GH-93023) (GH-94086)Miss Islington (bot)2022-06-211-0/+2
* [3.10] gh-79512: Fixed names and __module__ value of weakref classes (GH-9371...Serhiy Storchaka2022-06-211-0/+3
* gh-91387: Strip trailing slash from tarfile longname directories (GH-32423)Miss Islington (bot)2022-06-211-0/+1
* [3.10] gh-79009: sqlite3.iterdump now correctly handles tables with autoincre...Miss Islington (bot)2022-06-202-0/+2
* gh-61162: Clarify sqlite3 connection context manager docs (GH-93890)Miss Islington (bot)2022-06-191-0/+1
* GH-83658: make multiprocessing.Pool raise an exception if maxtasksperchild is...Miss Islington (bot)2022-06-171-0/+1
* gh-91810: Fix regression with writing an XML declaration with encoding='unico...Miss Islington (bot)2022-06-161-0/+2
* gh-91577: SharedMemory move imports out of methods (GH-91579)Miss Islington (bot)2022-06-161-0/+1
* gh-87260: Update sqlite3 signature docs to reflect actual implementation (GH-...Miss Islington (bot)2022-06-151-0/+1
* [3.10] gh-79579: Improve DML query detection in sqlite3 (GH-93623) (#93801)Erlend Egeberg Aasland2022-06-141-0/+2
* gh-93353: Fix importlib.resources._tempfile() finalizer (GH-93377)Miss Islington (bot)2022-06-131-0/+3
* gh-92930: _pickle.c: Acquire strong references before calling save() (GH-92931)Miss Islington (bot)2022-06-111-0/+1
* gh-92886: Fix tests that fail when running with optimizations (`-O`) in `test...Miss Islington (bot)2022-06-101-0/+1
* gh-91317: Document that Path does not collapse initial `//` (GH-32193)Miss Islington (bot)2022-06-101-0/+2
* [3.10] gh-93671: Avoid exponential backtracking in deeply nested sequence pat...Pablo Galindo Salgado2022-06-101-0/+2
* bpo-42658: Use LCMapStringEx in ntpath.normcase to match OS behaviour for cas...Steve Dower2022-06-101-0/+3
* gh-90494: Reject 6th element of the __reduce__() tuple (GH-93609) (GH-93632)Miss Islington (bot)2022-06-101-0/+3
* gh-90549: Fix leak of global named resources using multiprocessing spawn (GH-...Miss Islington (bot)2022-06-101-0/+2
* [3.10] gh-93421: Update sqlite3 cursor.rowcount only after SQLITE_DONE (GH-93...Erlend Egeberg Aasland2022-06-081-0/+3
* gh-57539: Increase calendar test coverage (GH-93468) (GH-93565)Miss Islington (bot)2022-06-072-0/+2
* gh-88831: In docs for asyncio.create_task, explain why strong references to t...Miss Islington (bot)2022-06-071-0/+1
* gh-92914: Round the allocated size for lists up to the even number (GH-92915)...Miss Islington (bot)2022-06-071-0/+1
* gh-86986: bump min sphinx version to 3.2 (GH-93337) (GH-93562)Miss Islington (bot)2022-06-071-0/+1
* Python 3.10.5v3.10.5Pablo Galindo2022-06-0679-181/+824
* gh-89973: Fix re.error in the fnmatch module. (GH-93072)Miss Islington (bot)2022-06-051-0/+3
* gh-92886: Fix test that fails when running with `-O` in `test_imaplib.py` (GH...Miss Islington (bot)2022-06-041-0/+1
* gh-93156 - fix negative indexing into absolute `pathlib.PurePath().parents` (...Miss Islington (bot)2022-06-031-0/+2
* gh-93418: Fix an assert when an f-string expression is followed by an '=', bu...Miss Islington (bot)2022-06-021-0/+2
* bpo-42272: fix misleading warning filter message/module docs (GH-23172)Miss Islington (bot)2022-05-301-0/+3
* [3.10] gh-93217: fix some issues in man page and --help (GH-93219) (#93261)Éric2022-05-291-3/+7
* gh-92240 : Include release dates for "What's New In Python 3.X" (GH-92937)Miss Islington (bot)2022-05-291-0/+2
* gh-92839: fixed typo in _bisectmodule.c (line 131) (GH-92849) (#93321)Miss Islington (bot)2022-05-281-0/+1
* [3.10] gh-91924: Fix __ltrace__ for non-UTF-8 stdout encoding (#93214)Victor Stinner2022-05-251-0/+2
* [3.10] gh-83245: Raise BadZipFile instead of ValueError when reading a corrup...Miss Islington (bot)2022-05-251-0/+2
* gh-93065: Fix HAMT to iterate correctly over 7-level deep trees (GH-93066) (G...Miss Islington (bot)2022-05-242-0/+6
* gh-93061: Mark as artificial: backwards jump after async for (GH-93120)Dennis Sweeney2022-05-231-0/+1
* gh-93010: InvalidHeaderError used but nonexistent (GH-93015)Miss Islington (bot)2022-05-231-0/+1
* gh-92984: Explicitly disable incremental linking for Windows Release and PGO ...Miss Islington (bot)2022-05-191-0/+1
* [3.10] bpo-28249: fix `lineno` location for empty `DocTest` instances (GH-304...Łukasz Langa2022-05-191-0/+2
* bpo-45393: help() on operator precedence has misleading entries (GH-31246) (G...Miss Islington (bot)2022-05-191-0/+2
* gh-92670: Skip test_shutil.TestCopy.test_copyfile_nonexistent_dir on AIX (GH-...Miss Islington (bot)2022-05-191-0/+3