summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Apply changes from importlib_resources 5.0.4feature/42129-resources-namespace-packagesJason R. Coombs2021-03-041-2/+10
* Update blurbJason R. Coombs2021-02-281-2/+2
* Apply changes from importlib_resources 5.0.3Jason R. Coombs2021-02-285-8/+164
* Equip NamespaceLoader with a NamespaceReader.Jason R. Coombs2021-02-282-730/+746
* Unify behavior in ResourceReaderDefaultsTests and align with the behavior fou...Jason R. Coombs2021-02-281-1/+3
* Update changelog.Jason R. Coombs2021-02-281-0/+3
* Apply changes from importlib_resources 5.0.Jason R. Coombs2021-02-2814-181/+390
* bpo-43345: Enhance TypedDict documentation. (#24668)Paul Bryan2021-02-271-12/+13
* bpo-43335: Update macro to check gcc version (GH-24662)Dong-hee Na2021-02-281-2/+2
* bpo-43321: Fix SystemError in getargs.c (GH-24656)Inada Naoki2021-02-272-2/+4
* bpo-42128: Structural Pattern Matching (PEP 634) (GH-22917)Brandt Bucher2021-02-2643-1444/+9704
* bpo-38302: __pow__/__rpow__ now called when __ipow__ returns NotImplemented (...Alex2021-02-264-21/+73
* bpo-43294: Remove unused variables in pysqlite_connection_*() (GH-24658)Erlend Egeberg Aasland2021-02-261-6/+4
* bpo-43317: Use io.DEFAULT_BUFFER_SIZE instead of 1024 in gzip CLI (#24645)Ruben Vorderman2021-02-262-1/+4
* Update logging.config.rst (GH-24630)takahashi2021-02-261-1/+1
* closes bpo-43278: remove unnecessary leading '\n' from COMPILER when build wi...Joseph Shen2021-02-252-2/+3
* bpo-43144: Mark unicodedata's test_normalization as requiring network (GH-24650)Ammar Askar2021-02-261-0/+1
* bpo-43316: gzip: Fix sys.exit() usage. (GH-24652)Inada Naoki2021-02-262-2/+2
* bpo-43314: Remove SQLITE_OPEN_URI ifdef (GH-24637)Erlend Egeberg Aasland2021-02-261-11/+0
* bpo-43290: Remove workaround from pysqlite_step() (GH-24638)Erlend Egeberg Aasland2021-02-261-9/+3
* bpo-43316: gzip: CLI uses non-zero return code on error. (GH-24647)Ruben Vorderman2021-02-253-6/+8
* Remove comment about a private email.headerregistry (GH-24233)Florian Bruhin2021-02-241-4/+0
* bpo-43293: Doc: move note about GIL to top of threading module (GH-24622)Guanzhong Chen2021-02-241-13/+13
* bpo-42151: don't set specified_attributes=1 in pure Python ElementTree (GH-22...Felix C. Stegerman2021-02-243-2/+22
* bpo-41841: Revise header (GH-24633)Terry Jan Reedy2021-02-231-2/+3
* bpo-43283: Add IDLE doc paragraph about print speed (GH-24615)Terry Jan Reedy2021-02-234-1/+25
* bpo-43146: fix None-handling in single-arg traceback.print_exception(None) (G...Irit Katriel2021-02-233-1/+10
* bpo-43146: fix regression in traceback.print_exception(None) (GH-24463)Irit Katriel2021-02-233-1/+22
* bpo-43239: Export PyCFunction_New with PyAPI_FUNC (GH-24551)Petr Viktorin2021-02-232-0/+8
* bpo-36346: Document removal schedule of deprecate APIs (GH-20879)Inada Naoki2021-02-233-8/+9
* bpo-36346: Emit DeprecationWarning for PyArg_Parse() with 'u' or 'Z'. (GH-20927)Inada Naoki2021-02-224-27/+69
* bpo-23882: Doc: Clarify unittest discovery document (GH-21560)Inada Naoki2021-02-221-6/+12
* bpo-42808: Add PyType_Type.tp_vectorcall for type(obj) performance (GH-24058)Dennis Sweeney2021-02-222-0/+20
* bpo-43260: io: Prevent large data remains in textio buffer. (GH-24592)Inada Naoki2021-02-223-3/+46
* Fix failed merge of bpo-43288. (GH-24614)Neil Schemenauer2021-02-211-2/+3
* bpo-43288: Fix bug in test_importlib test. (GH-24612)Neil Schemenauer2021-02-212-0/+6
* bpo-42093: Cleanup _PyDict_GetItemHint() (GH-24582)Victor Stinner2021-02-212-36/+20
* bpo-43269: Remove redundant extern keywords (GH-24605)Erlend Egeberg Aasland2021-02-216-6/+12
* bpo-43283: Rearrange some IDLE doc paragraphs. (GH-24604)Terry Jan Reedy2021-02-212-36/+37
* bpo-27646: Say that 'yield from' expression can be any iterable (GH-24595)Terry Jan Reedy2021-02-202-2/+4
* bpo-43269: Clean up sqlite3 file scope (GH-24578)Erlend Egeberg Aasland2021-02-216-19/+37
* bpo-43277: Add PySet_CheckExact to the C-API (GH-24598)Pablo Galindo2021-02-206-5/+20
* bpo-42990: Functions inherit current builtins (GH-24564)Victor Stinner2021-02-207-31/+74
* Fix typo in launcher.c (GH-24497)Ikko Ashimine2021-02-201-2/+2
* Fix typo in dis module doc (GH-24509)Irit Katriel2021-02-201-1/+1
* bpo-43042: Augment tutorial sentence (GH-24514)Terry Jan Reedy2021-02-191-1/+2
* bpo-42825: Enable /OPT:REF (GH-24098)Austin Lamb2021-02-191-0/+1
* closes bpo-43266: Improve array formatting. (GH-24573)Erlend Egeberg Aasland2021-02-191-4/+4
* bpo-35134: Move non-limited C API files to Include/cpython/ (GH-24561)Nicholas Sim2021-02-1914-34/+42
* bpo-43268: local_clear() uses _PyInterpreterState_GET() (GH-24583)Victor Stinner2021-02-191-15/+14