summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* [3.10] bpo-47032: Ensure Windows install builds fail correctly with a non-zer...Steve Dower2022-03-163-24/+28
* bpo-46948: Fix launcher installer build failure due to first part of fix (GH-...Miss Islington (bot)2022-03-161-0/+2
* [3.10] bpo-47024: Update OpenSSL to 1.1.1n (GH-31895) (GH-31916)Christian Heimes2022-03-158-15/+16
* bpo-43253: Don't call shutdown() for invalid socket handles (GH-31892)Miss Islington (bot)2022-03-153-1/+10
* bpo-20392: Fix inconsistency with uppercase file extensions in mimetypes.gues...Miss Islington (bot)2022-03-153-6/+12
* But Add missing newline to NEWS entry (GH-31893)Miss Islington (bot)2022-03-151-1/+1
* bpo-43721: Fix docstrings for property.getter/setter/deleter (GH-31046)Miss Islington (bot)2022-03-142-3/+4
* bpo-31415: importtime was made by Inada Naoki (GH-31875)Miss Islington (bot)2022-03-141-1/+1
* Revert "bpo-46986: Upgrade bundled setuptools to 60.9.3 (GH-31820)" (GH-31880)Ned Deily2022-03-144-2/+1
* [3.10] bpo-30677: [doc] mention that os.mkdir() can raise FileNotFoundError (...Miss Islington (bot)2022-03-141-1/+2
* [3.10] bpo-43215: Document Happy Eyeballs args of asyncio.open_connection (GH...Illia Volochii2022-03-141-1/+5
* [3.10] bpo-47004: Sync with importlib_metadata 4.11.3. (GH-31854). (GH-31857)Jason R. Coombs2022-03-134-3/+44
* bpo-46986: Upgrade bundled setuptools to 60.9.3 (GH-31820)Miss Islington (bot)2022-03-134-1/+2
* [3.10] bpo-46985: Upgrade bundled pip to 22.0.4 (GH-31819) (GH-31849)Miss Islington (bot)2022-03-134-1/+2
* [3.10] sqlite3: normalise pre-acronym determiners (GH-31772) (GH-31806)Jelle Zijlstra2022-03-123-12/+12
* [3.10] bpo-46677: Add examples of inheritance and attributes to `TypedDict` d...Charlie Zhao2022-03-121-3/+88
* bpo-46968: Fix faulthandler for Sapphire Rapids Xeon (GH-31789) (GH-31830)Victor Stinner2022-03-115-8/+30
* bpo-31327: Update time documentation to reflect possible errors (GH-31460)Miss Islington (bot)2022-03-111-0/+6
* [3.10] bpo-46581: Propagate private vars via _GenericAlias.copy_with (GH-3106...Matt Bogosian2022-03-114-7/+30
* [3.10] bpo-46198: rename duplicate tests and remove unused code (GH-30297) (G...Jelle Zijlstra2022-03-109-14/+7
* Remove print race from task_done example. (GH-31795)Miss Islington (bot)2022-03-101-4/+3
* [3.10] Docstring: replace pysqlite with sqlite3 (GH-31758) (GH-31777)Jelle Zijlstra2022-03-093-9/+9
* bpo-24959: fix unittest.assertRaises bug where traceback entries are dropped ...Miss Islington (bot)2022-03-083-14/+95
* bpo-46955: Expose asyncio.base_events.Server as asyncio.Server (GH-31760)Miss Islington (bot)2022-03-082-1/+3
* bpo-23325: Fix SIG_IGN and SIG_DFL int comparison in signal module (GH-31759)Miss Islington (bot)2022-03-082-13/+25
* Removed confusing reference to sys (GH-31638)Miss Islington (bot)2022-03-081-3/+3
* [3.10] docs: Don't use code formatting for emphasis (GH-30519) (GH-31764)Jelle Zijlstra2022-03-081-1/+1
* [3.10] bpo-46878: Purge 'non-standard' from sqlite3 docstrings (GH-31612) (GH...Erlend Egeberg Aasland2022-03-086-69/+67
* bpo-44439: _ZipWriteFile.write() handle buffer protocol correctly (GH-29468)Miss Islington (bot)2022-03-083-1/+19
* Removed ambiguity in __init_subclass__ docs (GH-31540)Miss Islington (bot)2022-03-081-1/+1
* bpo-46494: Mention the typing_extensions pkg in typing docs (GH-31260)Miss Islington (bot)2022-03-081-0/+4
* importlib.metadata: Remove empty footnote section (GH-30451)Miss Islington (bot)2022-03-081-3/+0
* bpo-45680: Improve docs on subscriptions w.r.t. `GenericAlias` objects (GH-29...Miss Islington (bot)2022-03-081-20/+30
* bpo-46932: Update bundled libexpat to 2.4.7 (GH-31736)Miss Islington (bot)2022-03-073-14/+156
* bpo-44549: Update bzip2 to 1.0.8 in Windows builds to mitigate CVE-2016-3189 ...Steve Dower2022-03-074-3/+5
* bpo-46948: Fix CVE-2022-26488 by ensuring the Windows Installer correctly use...Steve Dower2022-03-0711-4/+26
* [3.10] Update grammar_grapher with the new forced (&&) directive (GH-31704) (...Luca Chiodini2022-03-071-0/+3
* [3.10] bpo-46940: Don't override existing AttributeError suggestion informati...Pablo Galindo Salgado2022-03-074-15/+48
* bpo-43292: Fix file leak in `ET.iterparse()` when not exhausted (GH-31696)Miss Islington (bot)2022-03-074-7/+20
* bpo-14156: Make argparse.FileType work correctly for binary file modes when a...Miss Islington (bot)2022-03-063-17/+110
* Lib/typing.py copy edits originating from GH-31061 (GH-31684)Miss Islington (bot)2022-03-051-3/+3
* bpo-38738: Fix formatting of True and False in the threading documentation (G...Miss Islington (bot)2022-03-041-8/+8
* bpo-25415: Remove confusing sentence from IOBase docstrings (PR-31631)Miss Islington (bot)2022-03-044-13/+8
* [3.10] bpo-46913: Fix test_ctypes, test_hashlib, test_faulthandler on UBSan (...Victor Stinner2022-03-044-11/+55
* bpo-6634: [doc] clarify that sys.exit() does not always exit the interpreter ...Miss Islington (bot)2022-03-031-5/+3
* bpo-46831: Update __build_class__ comment (GH-31522)Miss Islington (bot)2022-03-031-3/+2
* bpo-46643: Fix stringized P.args/P.kwargs with get_type_hints (GH-31238)Miss Islington (bot)2022-03-033-1/+15
* bpo-21910: Clarify docs for codecs writelines method (GH-31245)Miss Islington (bot)2022-03-031-2/+3
* [3.10] bpo-45492: Corrected documentation for co_names in inspect library doc...Irit Katriel2022-03-021-2/+3
* [3.10] bpo-46633: Skip tests on ASAN and/or MSAN builds (GH-31632) (GH-31634)Victor Stinner2022-03-0214-49/+109