summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* bpo-45612: Add sqlite3 module docstring (GH-29224) (GH-29289)Miss Islington (bot)2021-10-281-0/+34
* bpo-45583: Correct datamodel documentation of int() (GH-29182) (GH-29286)Miss Islington (bot)2021-10-281-2/+2
* bpo-45604: add `level` argument to `multiprocessing.log_to_stderr` func (GH-2...Miss Islington (bot)2021-10-282-1/+3
* bpo-45608: Document missing `sqlite3` DB-API attributes and methods (GH-29219...Miss Islington (bot)2021-10-281-0/+46
* bpo-28737: Document when tp_dealloc should call PyObject_GC_UnTrack() (GH-292...Miss Islington (bot)2021-10-283-9/+33
* bpo-44828: Avoid tkinter file dialog failure on macOS 12 Monterey (GH-29276)Miss Islington (bot)2021-10-283-1/+206
* [3.9] bpo-39679: Fix `singledispatchmethod` `classmethod`/`staticmethod` bug ...Alex Waygood2021-10-283-0/+51
* bpo-44904: Fix classmethod property bug in doctest module (GH-28838)Miss Islington (bot)2021-10-284-4/+21
* bpo-45438: format of inspect.Signature with generic builtins (GH-29212)Miss Islington (bot)2021-10-273-0/+14
* [3.9] bpo-45618: Fix documentation build by pinning Docutils version to 0.17....Ned Deily2021-10-272-3/+8
* bpo-45571: use PY_CFLAGS_NODIST for shared Modules/Setup (GH-29161)Miss Islington (bot)2021-10-222-1/+3
* bpo-44959: Add fallback to extension modules with '.sl' suffix on HP-UX (GH-2...Miss Islington (bot)2021-10-222-1/+2
* bpo-43592: Raise RLIMIT_NOFILE in test.libregrtest (GH-29127)Miss Islington (bot)2021-10-222-0/+27
* bpo-44344: Document that pow can return a complex number for non-complex inpu...Miss Islington (bot)2021-10-211-1/+4
* bpo-41983: add availability info to socket docs (GH-27519) (GH-29137)Miss Islington (bot)2021-10-211-0/+4
* bpo-45160: Ttk optionmenu only set variable once (GH-28291) (GH-29132)Miss Islington (bot)2021-10-213-1/+18
* [3.9] bpo-44174: [Enum] add name-mangling reference (GH-29128)Ethan Furman2021-10-211-2/+2
* bpo-34451: Document prompt and output toggle feature in html tutorial (GH-271...Miss Islington (bot)2021-10-211-0/+7
* [3.9] bpo-42517: [ENUM] update docs for changes coming in 3.11 (GH-29113)Ethan Furman2021-10-201-2/+11
* bpo-45192: Fix a bug that infers the type of an os.PathLike[bytes] object as ...Miss Islington (bot)2021-10-203-0/+28
* 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