summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* [3.10] bpo-28737: Document when tp_dealloc should call PyObject_GC_UnTrack() ...Sam Gross2021-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
* Fix typo in Counter documentation (GH-29223)Miss Islington (bot)2021-10-281-1/+1
* 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
* bpo-45562: Print tokenizer debug messages to stderr (GH-29250) (GH-29252)Miss Islington (bot)2021-10-271-4/+4
* bpo-45618: Fix documentation build by pinning Docutils version to 0.17.1 (GH-...Miss Islington (bot)2021-10-271-0/+4
* bpo-45566: `test_frozen_pickle` checks all `pickle` protocols (GH-29150)Miss Islington (bot)2021-10-242-4/+18
* bpo-45574: fix warning about `print_escape` being unused (GH-29172) (#29176)Miss Islington (bot)2021-10-232-0/+3
* bpo-30570: Use Py_EnterRecursiveCall() in issubclass() (GH-29048)Miss Islington (bot)2021-10-223-6/+45
* bpo-45571: use PY_CFLAGS_NODIST for shared Modules/Setup (GH-29161)Miss Islington (bot)2021-10-222-1/+3
* bpo-45562: Only show debug output from the parser in debug builds (GH-29140) ...Miss Islington (bot)2021-10-221-0/+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-29136)Miss Islington (bot)2021-10-211-0/+4
* bpo-45557: Fix underscore_numbers in pprint.pprint(). (GH-29129)Miss Islington (bot)2021-10-212-1/+4
* bpo-45160: Ttk optionmenu only set variable once (GH-28291) (GH-29131)Miss Islington (bot)2021-10-213-1/+18
* [3.10] bpo-44174: [Enum] add reference to name mangling (GH-29117)Ethan Furman2021-10-211-3/+3
* bpo-45521: Fix a bug in the obmalloc radix tree code. (GH-29051) (GH-29122)Miss Islington (bot)2021-10-212-1/+4
* bpo-34451: Document prompt and output toggle feature in html tutorial (GH-271...Miss Islington (bot)2021-10-211-0/+7
* bpo-44559: [Enum] restore fixes lost in 3.9 reversion (GH-29114)Ethan Furman2021-10-213-42/+194
* 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-29095)Miss Islington (bot)2021-10-202-23/+18
* Cleanup a couple of comments left on PR 28775 post-merge. (GH-29079)Miss Islington (bot)2021-10-202-2/+2
* bpo-45536: Check OpenSSL APIs in configure (GH-29088)Miss Islington (bot)2021-10-203-0/+105
* Add PEPs 593 & 647 to list of PEPs at top of typing docs (GH-29097)Miss Islington (bot)2021-10-201-1/+1
* bpo-45436: Fix tkinter tests with Tcl/Tk 8.6.11+ (GH-29077) (GH-29080)Miss Islington (bot)2021-10-202-5/+11
* bpo-39679: Add tests for classmethod/staticmethod singledispatchmethods (GH-2...Miss Islington (bot)2021-10-192-0/+44
* [3.10] bpo-45494: Fix parser crash when reporting errors involving invalid co...Łukasz Langa2021-10-195-123/+137
* [3.10] bpo-45500: Rewrite test_dbm (GH-29002) (GH-29069)Łukasz Langa2021-10-191-64/+50
* bpo-45449: add note about PEP 585 in collections.abc's documentation (GH-2904...Miss Islington (bot)2021-10-192-0/+4
* bpo-45515: Add zoneinfo to the datetime documentation (GH-29038) (GH-29065)Miss Islington (bot)2021-10-192-4/+9
* bpo-45475: Revert `__iter__` optimization for GzipFile, BZ2File, and LZMAFile...Miss Islington (bot)2021-10-194-12/+4
* [3.10] bpo-45221: Fix handling of LDFLAGS and CPPFLAGS options in setup.py (G...Miss Islington (bot)2021-10-182-0/+15
* Improve multiserver queue recipe (GH-29012) (GH-29013)Miss Islington (bot)2021-10-171-5/+6
* bpo-45229: Make test_http_cookiejar discoverable (GH-29004)Miss Islington (bot)2021-10-171-10/+1
* [3.10] bpo-45495: Add 'case' and 'match' to IDLE completions list. (GH-29000)...Miss Islington (bot)2021-10-163-3/+13
* bpo-45249: Fix caret location when end_offset is set to 0 (GH-28855)Miss Islington (bot)2021-10-163-1/+13
* [3.10]bpo-45463: Clarify that global statements allows multiple names (GH-288...Miss Islington (bot)2021-10-161-4/+4
* bpo-45428: Fix reading filenames from stdin in py_compile (GH-28848)Miss Islington (bot)2021-10-152-1/+2
* [3.10] bpo-45467: Fix IncrementalDecoder and StreamReader in the "raw-unicode...Serhiy Storchaka2021-10-148-324/+412
* [3.10] bpo-45461: Fix IncrementalDecoder and StreamReader in the "unicode-esc...Miss Islington (bot)2021-10-149-5801/+10855
* [3.10] no-issue: Make silence about warning '_POSIX_C_SOURCE redefined' (GH-...Dong-hee Na2021-10-141-4/+4
* bpo-45386: Handle strftime's ValueError graciously in xmlrpc.client (GH-28765...Miss Islington (bot)2021-10-132-2/+11
* bpo-24444: fix an error in argparse help when help for an option is blank (GH...Miss Islington (bot)2021-10-133-5/+44
* [3.10] bpo-45239: Fix parsedate_tz when time has more than 2 dots in it (GH-2...Łukasz Langa2021-10-133-0/+6
* bpo-45229: Make tkinter tests discoverable (GH-28637) (GH-28927)Miss Islington (bot)2021-10-1318-606/+498
* [docs] lexical_analysis: Expand the text on ``_`` (GH-28903) (GH-28933)Miss Islington (bot)2021-10-131-4/+16