summaryrefslogtreecommitdiff
path: root/Misc
Commit message (Expand)AuthorAgeFilesLines
* gh-104499: IDLE - fix completions for tk aqua 8.7 (#104591)Terry Jan Reedy2023-05-171-0/+1
* gh-104340: Suppress warning about unawaited exception for closed pipe stdin (...Guido van Rossum2023-05-171-0/+1
* gh-104555: Runtime-checkable protocols: Don't let previous calls to `isinstan...Alex Waygood2023-05-171-0/+7
* gh-104496: IDLE - fix About for mixed tcl/tk versions (#104585)Terry Jan Reedy2023-05-171-0/+1
* gh-104372: Cleanup _posixsubprocess `make_inheritable` for async signal safet...Gregory P. Smith2023-05-171-0/+1
* GH-101520: Move tracemalloc functionality into core, leaving interface in Mod...Mark Shannon2023-05-171-0/+2
* gh-104572: Improve error messages for invalid constructs in PEP 695 contexts ...Jelle Zijlstra2023-05-171-0/+2
* gh-102153: Start stripping C0 control and space chars in `urlsplit` (#102508)Illia Volochii2023-05-171-0/+3
* GH-103906: Remove immortal refcounting in the interpreter (GH-103909)Brandt Bucher2023-05-161-0/+2
* gh-87474: Fix file descriptor leaks in subprocess.Popen (#96351)cptpcrd2023-05-161-0/+1
* gh-75367: Fix data descriptor detection in inspect.getattr_static (#104517)Furkan Onder2023-05-161-0/+1
* gh-103861: Fix Zip64 extensions not being properly applied in some cases (#10...Carey Metcalfe2023-05-161-0/+2
* gh-69152: add method get_proxy_response_headers to HTTPConnection class (#104...Alexey Namyotkin2023-05-161-3/+3
* gh-103763: Implement PEP 695 (#103764)Jelle Zijlstra2023-05-151-0/+23
* gh-104461: Run tkinter test_configure_screen on X11 only (GH-104462)Christopher Chavez2023-05-151-0/+3
* gh-104482: Fix error handling bugs in ast.c (#104483)Irit Katriel2023-05-151-0/+1
* GH-102613: Fix recursion error from `pathlib.Path.glob()` (GH-104373)Barney Gale2023-05-151-0/+2
* gh-101819: Isolate `_io` (#101948)Erlend E. Aasland2023-05-151-0/+2
* gh-104494: Update certain Tkinter pack/place tests for Tk 8.7 errors (#104495)Christopher Chavez2023-05-151-0/+2
* gh-104490: Consistently define phony make targets (#104491)Gregory Szorc2023-05-151-0/+1
* gh-67056: document that registering/unregistering an atexit func from within ...Irit Katriel2023-05-151-0/+2
* gh-104487: PYTHON_FOR_REGEN must be minimum Python 3.10 (#104488)Erlend E. Aasland2023-05-151-0/+1
* GH-104405: Add missing PEP 523 checks (GH-104406)Brandt Bucher2023-05-121-0/+2
* gh-103333: Pickle the keyword attributes of AttributeError (#103352)Charles Machalow2023-05-121-0/+1
* gh-103204: `http.server` - Enforce that HTTP version numbers must consist onl...Ben Kallus2023-05-121-0/+3
* gh-103857: Update deprecation stacktrace to point to calling line (#104431)Hugo van Kemenade2023-05-121-0/+1
* GH-86275: Implementation of hypothesis stubs for property-based tests, with z...Paul Ganssle2023-05-121-0/+2
* GH-103082: Filter LINE events in VM, to simplify tool implementation. (GH-104...Mark Shannon2023-05-121-0/+5
* gh-104389: Add 'unused' keyword to Argument Clinic C converters (#104390)Erlend E. Aasland2023-05-121-0/+2
* gh-104392: Remove _paramspec_tvars from typing (#104393)Jelle Zijlstra2023-05-111-0/+2
* gh-104301: Allow leading whitespace in disambiguated pdb statements (#104342)James Gerity2023-05-111-0/+1
* GH-92184: Convert os.altsep to '/' in filenames when creating ZipInfo objects...Carey Metcalfe2023-05-111-0/+3
* GH-90208: Suppress OSError exceptions from `pathlib.Path.glob()` (GH-104141)Barney Gale2023-05-111-0/+4
* gh-103000: Optimise `dataclasses.asdict` for the common case (#104364)Alex Waygood2023-05-101-0/+2
* gh-103538: Remove unused TK_AQUA code (GH-103539)Christopher Chavez2023-05-101-0/+3
* GH-87695: Fix OSError from `pathlib.Path.glob()` (GH-104292)Barney Gale2023-05-101-0/+2
* gh-104263: Rely on Py_NAN and introduce Py_INFINITY (GH-104202)Sebastian Berg2023-05-101-0/+6
* gh-103848: Adds checks to ensure that bracketed hosts found by urlsplit are o...JohnJamesUtley2023-05-101-0/+2
* gh-97933: (PEP 709) inline list/dict/set comprehensions (#101441)Carl Meyer2023-05-091-0/+2
* gh-99889: Fix directory traversal security flaw in uu.decode() (#104096)Sam Carroll2023-05-091-0/+2
* gh-104139: Add itms-services to uses_netloc urllib.parse. (#104312)Gregory P. Smith2023-05-091-0/+3
* gh-90656: Add platform triplets for 64-bit LoongArch (LA64) (#30939)Zhang Na2023-05-091-0/+7
* gh-104180: Read SOCKS proxies from macOS System Configuration (#104181)samschott2023-05-091-0/+2
* GH-104308: socket.getnameinfo should release the GIL (#104307)Nathaniel J. Smith2023-05-081-0/+1
* gh-104310: Add importlib.util.allowing_all_extensions() (gh-104311)Eric Snow2023-05-081-0/+3
* gh-99113: A Per-Interpreter GIL! (gh-104210)Eric Snow2023-05-081-0/+6
* gh-89550: Buffer GzipFile.write to reduce execution time by ~15% (#101251)Arjun2023-05-081-0/+2
* gh-97696: Improve and fix documentation for asyncio eager tasks (#104256)Itamar Ostricher2023-05-081-1/+2
* gh-99108: Replace SHA3 implementation HACL* version (#103597)Jonathan Protzenko2023-05-071-0/+2
* gh-104265 Disallow instantiation of `_csv.Reader` and `_csv.Writer` (#104266)chgnrdv2023-05-071-0/+4