summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* bpo-43720: Update import-related stdlib deprecation messages to say they will...Brett Cannon2021-04-035-7/+16
* Replace broken example code with correct simpler code. (GH-25162)Raymond Hettinger2021-04-031-2/+2
* Add more tests for the descriptor tutorial (GH-25164)Raymond Hettinger2021-04-031-7/+57
* bpo-43705: Document that SyntaxError's offsets are 1-indexed (GH-25153)Ammar Askar2021-04-021-3/+19
* bpo-43672: raise ImportWarning when calling find_loader() (GH-25119)Brett Cannon2021-04-0213-618/+612
* bpo-24160: Fix breakpoints persistence across multiple pdb sessions (GH-21989)Irit Katriel2021-04-024-13/+144
* bpo-31956: Add start and stop parameters to array.index() (GH-25059)Zackery Spytz2021-04-026-12/+87
* bpo-41111: xxlimited.c defines Py_LIMITED_API (GH-25151)Victor Stinner2021-04-025-11/+7
* bpo-43688: Support "make regen-limited-abi" in debug mode (GH-25133)Victor Stinner2021-04-021-5/+0
* bpo-43688: Support the limited C API in debug mode (GH-25131)Victor Stinner2021-04-026-25/+82
* bpo-43687: Py_Initialize() creates singletons earlier (GH-25147)Victor Stinner2021-04-028-85/+128
* Document PyCode_Addr2Line function. (GH-25111)Mark Shannon2021-04-021-0/+8
* bpo-43510: Fix emitting EncodingWarning from _io module. (GH-25146)Inada Naoki2021-04-022-13/+17
* bpo-43651: PEP 597: Fix EncodingWarning in some tests (GH-25142)Inada Naoki2021-04-0211-31/+36
* bpo-43700: Replace Zulip badge with Discourse badge (GH-25141)Erlend Egeberg Aasland2021-04-021-3/+3
* bpo-43651: Fix test_compileall with PEP 597 (GH-25128)Inada Naoki2021-04-023-9/+9
* bpo-43651: Fix EncodingWarning in lib2to3/pgen2/pgen.py (GH-25127)Inada Naoki2021-04-011-1/+1
* bpo-43651: Fix EncodingWarning in test_warnings (GH-25126)Inada Naoki2021-04-011-3/+3
* bpo-26053: Fix test_pdb.test_issue26053() (GH-25139)Irit Katriel2021-04-011-3/+3
* bpo-43677: Fix a minor error in Doc/howto/descriptor.rst (#25123)Zackery Spytz2021-04-011-1/+1
* bpo-26053: Fix args echoed by pdb run command (#22033)Irit Katriel2021-04-013-1/+15
* bpo-27129: Use instruction offsets, not byte offsets, in bytecode and interna...Mark Shannon2021-04-0114-4562/+4561
* bpo-43688: Fix Py_LIMITED_API version of xxlimited (GH-25135)Victor Stinner2021-04-013-6/+6
* bpo-43690: stable_abi.py no longer parses macros (GH-25136)Victor Stinner2021-04-012-33/+1
* bpo-43688: Run make regen-limited-abi (GH-25134)Victor Stinner2021-04-011-0/+2
* Fix typos in 3.10 "What's new" (GH-25104)Don Kirkby2021-04-011-4/+4
* When printing stats, move radix tree info to its own section. (GH-25125)Tim Peters2021-04-011-9/+14
* bpo-43651: Fix EncodingWarning in test_io (GH-25097)Inada Naoki2021-04-011-67/+78
* bpo-43651: Fix EncodingWarning in test_file and test_file_eintr (GH-25109)Inada Naoki2021-04-012-2/+2
* bpo-42955: Add _overlapped to sys.stdlib_module_names (GH-25122)Victor Stinner2021-04-012-0/+2
* Enum: add (re)import of Flag for doctests (GH-25118)Ethan Furman2021-03-311-4/+4
* Disambiguate that -m also terminates the option list in the manpage. (GH-25100)Julien Palard2021-03-311-1/+2
* bpo-37945: Fix test_locale.test_getsetlocale_issue1813() (#25110)Victor Stinner2021-03-312-1/+9
* Document GH-24624Łukasz Langa2021-03-311-0/+3
* bpo-43179: Generalise alignment for optimised string routines (GH-24624)Jessica Clarke2021-03-318-32/+97
* Revert "bpo-43510: PEP 597: Accept `encoding="locale"` in binary mode (GH-251...Inada Naoki2021-03-313-14/+2
* bpo-43510: PEP 597: Accept `encoding="locale"` in binary mode (GH-25103)Inada Naoki2021-03-313-2/+14
* bpo-42225: IDLE - document two unix-related problems. (#25078)Terry Jan Reedy2021-03-313-9/+39
* bpo-40066: Enum: modify `repr()` and `str()` (GH-22392)Ethan Furman2021-03-3119-1373/+2107
* bpo-43399: Fix ElementTree.extend not working on iterators (GH-24751)Alex Prengère2021-03-304-1/+7
* bpo-41369: Finish updating the vendored libmpdec to version 2.5.1 (GH-24962)Antoine Pitrou2021-03-3026-117/+1970
* bpo-42134: Raise ImportWarning when calling find_module() in the import syste...Brett Cannon2021-03-309-962/+1012
* bpo-43125: Fix: return expected type (str), not original value (bytes) in ema...Grégory Starck2021-03-303-3/+3
* bpo-43637: Fix a possible memory leak in winreg.SetValueEx() (GH-25038)Zackery Spytz2021-03-301-0/+1
* bpo-33164: blake2: Fix Coverity scan (GH-25060)Inada Naoki2021-03-304-4/+4
* bpo-37448: Use radix tree for pymalloc address_in_range(). (GH-14474)Neil Schemenauer2021-03-302-5/+351
* bpo-43631: Update to OpenSSL 1.1.1k (GH-25024)Christian Heimes2021-03-3011-16/+17
* Fix tokenizer error when raw decoding null bytes (GH-25080)Pablo Galindo2021-03-291-1/+4
* bpo-43660: Fix crash when displaying exceptions with custom values for sys.st...Pablo Galindo2021-03-293-1/+20
* bpo-43659: Fix test_curses on AIX (GH-25074)Michael Felt2021-03-291-0/+1