summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* gh-89336: Remove configparser APIs that were deprecated for 3.12 (#92503)Gregory P. Smith2022-06-215-119/+27
* gh-87389: Fix an open redirection vulnerability in http.server. (#93879)Gregory P. Smith2022-06-213-2/+61
* DOC: correct bytesarray -> bytearray in comments (GH-92410)Thomas A Caswell2022-06-212-2/+2
* gh-82927: Update files related to HTML entities. (GH-92504)Ezio Melotti2022-06-216-78/+29
* gh-93021: Fix __text_signature__ for __get__ (GH-93023)Jelle Zijlstra2022-06-213-2/+10
* Tutorial: specify match cases don't fall through (GH-93615)max2022-06-211-2/+4
* gh-93240: clarify wording in IO tutorial (GH-93276)paulreece2022-06-211-1/+1
* Minor optimization for Fractions.limit_denominator (GH-93730)Mark Dickinson2022-06-211-6/+8
* gh-93675: Fix typos in `Doc/` (GH-93676)luzpaz2022-06-216-6/+6
* gh-93851: Fix all broken links in Doc/ (GH-93853)Oleg Iarygin2022-06-2130-47/+59
* Closes gh-94038: Update Release Schedule in README.rst from PEP 664 to PEP 69...MilanJuhas2022-06-211-1/+1
* gh-94068: Remove HVSOCKET_CONTAINER_PASSTHRU constant because it has been rem...Steve Dower2022-06-213-3/+0
* gh-86986: Drop compatibility support for Sphinx 2 (GH-93737)Adam Turner2022-06-2111-52/+18
* GH-93841: Allow stats to be turned on and off, cleared and dumped at runtime....Mark Shannon2022-06-217-22/+212
* gh-74953: _PyThread_cond_after() uses _PyTime_t (#94056)Victor Stinner2022-06-212-29/+16
* gh-54781: Move Lib/lib2to3/tests/ to Lib/test/test_lib2to3/ (#94049)Victor Stinner2022-06-2135-68/+68
* gh-93839: Use load_package_tests() for testmock (GH-94055)Christian Heimes2022-06-211-14/+3
* gh-94052: Don't re-run failed tests with --python option (#94054)Christian Heimes2022-06-213-6/+17
* gh-94028: Clear and reset sqlite3 statements properly in cursor iternext (GH-...Erlend Egeberg Aasland2022-06-213-0/+45
* GH-91432: Specialize FOR_ITER (GH-91713)Dennis Sweeney2022-06-2122-282/+447
* gh-93839: Move Lib/unttest/test/ to Lib/test/test_unittest/ (#94043)Victor Stinner2022-06-2138-137/+77
* gh-93839: Move Lib/ctypes/test/ to Lib/test/test_ctypes/ (#94041)Victor Stinner2022-06-2160-93/+83
* GH-93678: refactor compiler so that optimizer does not need the assembler and...Irit Katriel2022-06-212-160/+170
* gh-94021: Address unreachable code warning in specialize code (GH-94022)Christian Heimes2022-06-212-1/+3
* GH-93249: relax overly strict assertion on bounds->ar_start (GH-93961)Irit Katriel2022-06-202-2/+33
* gh-93937: PyOS_StdioReadline() uses PyConfig.legacy_windows_stdio (#94024)Victor Stinner2022-06-202-1/+5
* gh-87347: Add parenthesis around macro arguments (#93915)Victor Stinner2022-06-2030-144/+172
* gh-90539: doc: Expand on what should not go into CFLAGS, LDFLAGS (#92754)Matthias Köppe2022-06-201-0/+18
* GH-93516: Speedup line number checks when tracing. (GH-93763)Mark Shannon2022-06-206-8/+101
* GH-93897: Store frame size in code object and de-opt if insufficient space on...Mark Shannon2022-06-208-67/+50
* gh-84461: Silence some compiler warnings on WASM (GH-93978)Christian Heimes2022-06-207-8/+12
* gh-79009: sqlite3.iterdump now correctly handles tables with autoincrement (#...itssme2022-06-194-1/+62
* gh-61162: Clarify sqlite3 connection context manager docs (GH-93890)Erlend Egeberg Aasland2022-06-192-4/+19
* gh-93925: Improve clarity of sqlite3 commit/rollback, and close docs (#93926)Erlend Egeberg Aasland2022-06-193-19/+30
* gh-84461: Skip test_unwritable_directory again on Emscripten (GH-94007)Christian Heimes2022-06-191-0/+1
* gh-84461: Fix Emscripten umask and permission issues (GH-94002)Christian Heimes2022-06-194-0/+23
* gh-93991: Use boolean instead of 0/1 for condition check (GH-93992)Lei Zhang2022-06-191-4/+4
* gh-93937, C API: Move PyFrame_GetBack() to Python.h (#93938)Victor Stinner2022-06-1921-28/+61
* gh-74953: Reformat PyThread_acquire_lock_timed() (#93947)Victor Stinner2022-06-191-46/+62
* gh-93761: Fix test_logging test_config_queue_handler() race condition (#93952)Victor Stinner2022-06-191-0/+3
* What's new in 3.10: fix link to issue (#93968)Hugo van Kemenade2022-06-191-1/+1
* GH-93990: fix refcounting bug in `add_subclass` in `typeobject.c` (GH-93989)Kumar Aditya2022-06-191-1/+4
* gh-93975: Nicer error reporting in test_venv (GH-93959)Jason R. Coombs2022-06-182-14/+32
* gh-91387: Fix tarfile test on WASI (GH-93984)Christian Heimes2022-06-181-1/+1
* gh-93955: Use unbound methods for slot `__getattr__` and `__getattribute__` (...Ken Jin2022-06-182-1/+9
* gh-84461: Fix pydebug Emscripten browser builds (GH-93982)Christian Heimes2022-06-182-16/+28
* gh-89828: Do not relay the __class__ attribute in GenericAlias (#93754)Serhiy Storchaka2022-06-187-20/+18
* gh-84461: Fix circulare dependency on BUILDPYTHON (GH-93977)Christian Heimes2022-06-183-4/+14
* Add jaraco as primary owner of importlib.metadata and importlib.resources. (#...Jason R. Coombs2022-06-181-0/+2
* gh-91387: Strip trailing slash from tarfile longname directories (GH-32423)Chris Fernald2022-06-173-0/+28