summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* bpo-45464: [doc] Explain that subclassing multiple exceptions is fragile (GH-...Miss Islington (bot)2021-10-202-0/+27
* bpo-45532: Replace 'default' with 'main' as default in sys.version (GH-29100)Miss Islington (bot)2021-10-202-2/+5
* bpo-45229: Make doctest tests discoverable (GH-28986) (GH-29096)Miss Islington (bot)2021-10-202-23/+18
* [3.9] bpo-45494: Fix parser crash when reporting errors involving invalid con...Łukasz Langa2021-10-205-89/+103
* Cleanup a couple of comments left on PR 28775 post-merge. (GH-29079)Miss Islington (bot)2021-10-202-2/+2
* bpo-45436: Fix tkinter tests with Tcl/Tk 8.6.11+ (GH-29077) (GH-29081)Miss Islington (bot)2021-10-202-5/+11
* [3.9] bpo-45500: Rewrite test_dbm (GH-29002) (GH-29074)Łukasz Langa2021-10-201-64/+50
* [3.9] bpo-45449: add note about PEP 585 in collections.abc's documentation (G...Łukasz Langa2021-10-192-0/+4
* bpo-45515: Add zoneinfo to the datetime documentation (GH-29038) (GH-29066)Miss Islington (bot)2021-10-192-4/+9
* Improve multiserver queue recipe (GH-29012) (GH-29014)Miss Islington (bot)2021-10-181-5/+6
* bpo-45229: Make test_http_cookiejar discoverable (GH-29004)Miss Islington (bot)2021-10-171-10/+1
* [3.9]bpo-45463: Clarify that global statements allows multiple names (GH-2885...Miss Islington (bot)2021-10-161-4/+4
* bpo-45467: Fix IncrementalDecoder and StreamReader in the "raw-unicode-escape...Serhiy Storchaka2021-10-148-351/+443
* [3.9] bpo-45461: Fix IncrementalDecoder and StreamReader in the "unicode-esca...Serhiy Storchaka2021-10-1410-2614/+7560
* no-issue: Make silence about warning '_POSIX_C_SOURCE redefined' (GH-28948)Miss Islington (bot)2021-10-141-4/+4
* [3.9] bpo-24444: fix an error in argparse help when help for an option is bla...Miss Islington (bot)2021-10-133-5/+46
* bpo-45386: Handle strftime's ValueError graciously in xmlrpc.client (GH-28765...Miss Islington (bot)2021-10-132-2/+11
* [3.9] bpo-45229: Make tkinter tests discoverable (GH-28637) (GH-28929)Łukasz Langa2021-10-1317-600/+496
* bpo-45239: Fix parsedate_tz when time has more than 2 dots in it (GH-28452) (...Miss Islington (bot)2021-10-133-0/+6
* bpo-20692: Add Programming FAQ entry for 1.__class__ error. (GH-28918)Miss Islington (bot)2021-10-132-0/+23
* [3.9] bpo-45405: Prevent ``internal configure error`` when running ``configur...Miss Islington (bot)2021-10-133-6/+12
* Fix format string in _PyImport_LoadDynamicModuleWithSpec() (GH-28863)Miss Islington (bot)2021-10-121-1/+1
* Slight correct grammar (GH-28860)Miss Islington (bot)2021-10-121-1/+1
* bpo-45441: Update some moved URLs in documentation (GH-28861)Miss Islington (bot)2021-10-124-6/+6
* bpo-45401: Fix a resource warning in test_logging (GH-28864) (GH-28873)Miss Islington (bot)2021-10-121-0/+1
* bpo-42253: Update xml.dom.minidom.rst (GH-23126) (GH-28875)Miss Islington (bot)2021-10-121-0/+8
* bpo-45351, asyncio: Enhance echo server example, print all addresses (GH-28828)Miss Islington (bot)2021-10-111-2/+2
* Handle error when PyUnicode_GetLength returns a negative value. (GH-28859)Miss Islington (bot)2021-10-111-0/+3
* bpo-45401: Change shouldRollover() methods to only rollover regular f… (GH-...Miss Islington (bot)2021-10-112-4/+25
* Fix a leak in _PyImport_LoadDynamicModuleWithSpec() after failing PySys_Audit...Miss Islington (bot)2021-10-111-1/+1
* Fix the "Finding all Adverbs" example (GH-21420) (#28840)Miss Islington (bot)2021-10-101-2/+2
* [3.9] bpo-20028: Keep original exception when PyUnicode_GetLength return -1 (...Dong-hee Na2021-10-091-0/+6
* bpo-20028: Improve error message of csv.Dialect when initializing (GH-28705)Miss Islington (bot)2021-10-093-9/+70
* bpo-45262, asyncio: Fix cache of the running loop holder (GH-28796)Miss Islington (bot)2021-10-072-0/+4
* bpo-45337: Use the realpath of the new executable when creating a venv on Win...Miss Islington (bot)2021-10-073-9/+29
* [3.9] Fix typos in the Lib directory (GH-28775) (GH-28803)Christian Clauss2021-10-0753-67/+67
* [3.9] Fix typos in the Tools directory (GH-28769) (GH-28800)Christian Clauss2021-10-075-5/+5
* [3.9] Fix typos in the Python directory (GH-28767) (GH-28798)Christian Clauss2021-10-074-4/+4
* [3.9] Fix typos in the Objects directory (GH-28766) (GH-28795)Christian Clauss2021-10-077-8/+8
* [3.9] [Misc] [Mac] Fix typos found using codespell (GH-28756) (GH-28793)Christian Clauss2021-10-078-17/+17
* [3.9] Fix typos in the Modules directory (GH-28761). (GH-28791)Christian Clauss2021-10-0715-17/+17
* [3.9] Fix typos in the Include directory (GH-28745) (GH-28788)Christian Clauss2021-10-074-5/+5
* [3.9] bpo-45385: Fix reference leak from descr_check (GH-28719) (GH-28780)Dong-hee Na2021-10-072-39/+42
* [doc] Mention __slots__ behavior in weakref.rst (GH-21061) (GH-28773)Miss Islington (bot)2021-10-061-0/+4
* bpo-45328: Avoid failure in OSs without TCP_NODELAY support (GH-28646) (GH-28...Miss Islington (bot)2021-10-062-1/+8
* bpo-34804: [doc] Rephrase section on side effects in functional.rst for clari...Miss Islington (bot)2021-10-061-5/+4
* [3.9] [doc] Fix typos found using codespell (GH-28744) (GH-28759)Christian Clauss2021-10-065-7/+7
* [doc] Update references to NumPy (GH-22458) (GH-28749)Miss Islington (bot)2021-10-064-8/+5
* [3.9] bpo-45343: Update bundled pip to 21.2.4 and setuptools to 58.1.0 (GH-28...Łukasz Langa2021-10-055-6/+3
* sqlite3: Modernize documentation around unicode and bytes. (GH-28652) (GH-28695)Miss Islington (bot)2021-10-052-4/+4