summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* gh-103606: Improve error message from logging.config.FileConfig (GH-103628)HEADmainPrince Roshan2023-05-183-6/+60
* gh-104499: Fix typo. (#104598)Terry Jan Reedy2023-05-181-1/+1
* gh-104499: IDLE - fix completions for tk aqua 8.7 (#104591)Terry Jan Reedy2023-05-173-7/+6
* gh-104340: Suppress warning about unawaited exception for closed pipe stdin (...Guido van Rossum2023-05-172-0/+4
* gh-104555: Runtime-checkable protocols: Don't let previous calls to `isinstan...Alex Waygood2023-05-173-7/+96
* gh-104050: Add type hints to Argument Clinic converter keywords (#104588)Erlend E. Aasland2023-05-171-12/+36
* gh-104496: IDLE - fix About for mixed tcl/tk versions (#104585)Terry Jan Reedy2023-05-174-23/+22
* gh-104372: Cleanup _posixsubprocess `make_inheritable` for async signal safet...Gregory P. Smith2023-05-172-34/+92
* GH-101520: Move tracemalloc functionality into core, leaving interface in Mod...Mark Shannon2023-05-1711-1545/+1621
* typing: Add more tests for TypeVar (#104571)Jelle Zijlstra2023-05-173-8/+50
* gh-104572: Improve error messages for invalid constructs in PEP 695 contexts ...Jelle Zijlstra2023-05-173-4/+68
* typing: Use PEP 695 syntax in typing.py (#104553)Jelle Zijlstra2023-05-171-11/+17
* gh-102153: Start stripping C0 control and space chars in `urlsplit` (#102508)Illia Volochii2023-05-174-3/+119
* gh-104469: Update README.txt for _testcapi (gh-104529)Dong-hee Na2023-05-171-0/+7
* GH-103092: isolate `_elementtree` (#104561)Kumar Aditya2023-05-171-43/+42
* gh-104050: Add typing to Argument Clinic converters (#104547)Erlend E. Aasland2023-05-161-53/+57
* GH-103906: Remove immortal refcounting in the interpreter (GH-103909)Brandt Bucher2023-05-164-516/+476
* gh-87474: Fix file descriptor leaks in subprocess.Popen (#96351)cptpcrd2023-05-162-130/+164
* GH-103092: isolate `pyexpat` (#104506)Kumar Aditya2023-05-162-9/+21
* gh-75367: Fix data descriptor detection in inspect.getattr_static (#104517)Furkan Onder2023-05-163-2/+8
* gh-104050: Add more annotations to `Tools/clinic.py` (#104544)Nikita Sobolev2023-05-163-30/+60
* gh-104555: Fix isinstance() and issubclass() for runtime-checkable protocols ...Alex Waygood2023-05-162-1/+19
* gh-103865: add monitoring support to LOAD_SUPER_ATTR (#103866)Carl Meyer2023-05-1610-236/+535
* CODEOWNERS: Assign new PEP 695 files to myself (#104551)Jelle Zijlstra2023-05-161-0/+2
* GH-104510: Fix refleaks in `_io` base types (#104516)Kumar Aditya2023-05-163-26/+6
* gh-104539: Fix indentation error in logging.config.rst (#104545)Jesper Noordsij2023-05-161-1/+1
* gh-104050: Don't star-import 'types' in Argument Clinic (#104543)Erlend E. Aasland2023-05-161-3/+2
* gh-104050: Add basic typing to CConverter in clinic.py (#104538)Erlend E. Aasland2023-05-161-14/+14
* gh-64595: Fix write file logic in Argument Clinic (#104507)Erlend E. Aasland2023-05-161-11/+12
* gh-104523: Inline minimal PGO rules (#104524)Gregory Szorc2023-05-161-16/+4
* gh-103861: Fix Zip64 extensions not being properly applied in some cases (#10...Carey Metcalfe2023-05-163-15/+172
* gh-69152: add method get_proxy_response_headers to HTTPConnection class (#104...Alexey Namyotkin2023-05-164-12/+44
* gh-103763: Implement PEP 695 (#103764)Jelle Zijlstra2023-05-1556-3148/+9084
* gh-104461: Run tkinter test_configure_screen on X11 only (GH-104462)Christopher Chavez2023-05-152-0/+5
* gh-104469: Convert _testcapi/watchers.c to use Argument Clinic (#104503)Nikita Sobolev2023-05-152-43/+259
* gh-104482: Fix error handling bugs in ast.c (#104483)Irit Katriel2023-05-154-19/+45
* gh-104341: Adjust tstate_must_exit() to Respect Interpreter Finalization (gh-...Eric Snow2023-05-1511-10/+56
* GH-102613: Fix recursion error from `pathlib.Path.glob()` (GH-104373)Barney Gale2023-05-153-20/+18
* gh-101819: Fix _io clinic input for unused base class method stubs (#104418)Erlend E. Aasland2023-05-156-109/+168
* gh-101819: Isolate `_io` (#101948)Erlend E. Aasland2023-05-1513-362/+205
* Bump mypy from 1.2.0 to 1.3.0 in /Tools/clinic (#104501)dependabot[bot]2023-05-151-1/+1
* gh-104494: Update certain Tkinter pack/place tests for Tk 8.7 errors (#104495)Christopher Chavez2023-05-152-4/+8
* gh-104050: Run mypy on `clinic.py` in CI (#104421)Alex Waygood2023-05-156-24/+101
* gh-104490: Consistently define phony make targets (#104491)Gregory Szorc2023-05-152-20/+78
* gh-67056: document that registering/unregistering an atexit func from within ...Irit Katriel2023-05-152-0/+5
* gh-104487: PYTHON_FOR_REGEN must be minimum Python 3.10 (#104488)Erlend E. Aasland2023-05-154-2/+5
* gh-101282: move BOLT config after PGO (gh-104493)Gregory Szorc2023-05-152-242/+242
* gh-104469 Convert _testcapi/float.c to use AC (gh-104470)Dong-hee Na2023-05-152-19/+123
* gh-104456: Fix ref leak in _ctypes.COMError (#104457)Kirill Podoprigora2023-05-141-1/+9
* gh-98539: Make _SSLTransportProtocol.abort() safe to call when closed (#104474)Sam Bull2023-05-141-1/+2