summaryrefslogtreecommitdiff
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* gh-103606: Improve error message from logging.config.FileConfig (GH-103628)HEADmainPrince Roshan2023-05-182-6/+52
* 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-172-7/+5
* gh-104340: Suppress warning about unawaited exception for closed pipe stdin (...Guido van Rossum2023-05-171-0/+3
* gh-104555: Runtime-checkable protocols: Don't let previous calls to `isinstan...Alex Waygood2023-05-172-7/+89
* gh-104496: IDLE - fix About for mixed tcl/tk versions (#104585)Terry Jan Reedy2023-05-173-23/+21
* typing: Add more tests for TypeVar (#104571)Jelle Zijlstra2023-05-172-7/+49
* gh-104572: Improve error messages for invalid constructs in PEP 695 contexts ...Jelle Zijlstra2023-05-171-0/+62
* 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-172-1/+72
* gh-87474: Fix file descriptor leaks in subprocess.Popen (#96351)cptpcrd2023-05-161-130/+163
* gh-75367: Fix data descriptor detection in inspect.getattr_static (#104517)Furkan Onder2023-05-162-2/+7
* 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-162-4/+222
* gh-103861: Fix Zip64 extensions not being properly applied in some cases (#10...Carey Metcalfe2023-05-162-15/+170
* gh-69152: add method get_proxy_response_headers to HTTPConnection class (#104...Alexey Namyotkin2023-05-162-9/+30
* gh-103763: Implement PEP 695 (#103764)Jelle Zijlstra2023-05-1512-507/+1380
* gh-104461: Run tkinter test_configure_screen on X11 only (GH-104462)Christopher Chavez2023-05-151-0/+2
* gh-104482: Fix error handling bugs in ast.c (#104483)Irit Katriel2023-05-151-0/+6
* GH-102613: Fix recursion error from `pathlib.Path.glob()` (GH-104373)Barney Gale2023-05-152-20/+16
* gh-101819: Isolate `_io` (#101948)Erlend E. Aasland2023-05-151-2/+5
* gh-104494: Update certain Tkinter pack/place tests for Tk 8.7 errors (#104495)Christopher Chavez2023-05-151-4/+6
* gh-98539: Make _SSLTransportProtocol.abort() safe to call when closed (#104474)Sam Bull2023-05-141-1/+2
* GH-71383: IDLE - Document testing subsets of modules (#104463)Terry Jan Reedy2023-05-133-20/+29
* gh-75710: IDLE - add docstrings and comments to editor module (#104446)Terry Jan Reedy2023-05-131-25/+102
* gh-91896: Revert some very noisy DeprecationWarnings for `ByteString` (#104424)Alex Waygood2023-05-135-73/+16
* gh-99836: IDLE - update news.txt for 3.12 (#104444)Terry Jan Reedy2023-05-131-2/+13
* gh-104404: fix crasher with nested comprehensions plus lambdas (#104442)Carl Meyer2023-05-121-0/+8
* GH-104405: Add missing PEP 523 checks (GH-104406)Brandt Bucher2023-05-121-18/+70
* gh-103333: Pickle the keyword attributes of AttributeError (#103352)Charles Machalow2023-05-121-27/+34
* gh-103204: `http.server` - Enforce that HTTP version numbers must consist onl...Ben Kallus2023-05-122-0/+25
* gh-104415: Fix refleak tests for `typing.ByteString` deprecation (#104416)Nikita Sobolev2023-05-121-0/+9
* GH-86275: Implementation of hypothesis stubs for property-based tests, with z...Paul Ganssle2023-05-127-1/+621
* GH-103082: Filter LINE events in VM, to simplify tool implementation. (GH-104...Mark Shannon2023-05-124-6/+65
* gh-104389: Add 'unused' keyword to Argument Clinic C converters (#104390)Erlend E. Aasland2023-05-121-0/+38
* gh-91896: Improve visibility of `ByteString` deprecation warnings (#104294)Alex Waygood2023-05-115-12/+85
* gh-104371: Fix calls to `__release_buffer__` while an exception is active (#1...Jelle Zijlstra2023-05-121-0/+13
* gh-104377: fix cell in comprehension that is free in outer scope (#104394)Carl Meyer2023-05-111-4/+55
* gh-104392: Remove _paramspec_tvars from typing (#104393)Jelle Zijlstra2023-05-111-13/+6
* gh-104396: uuid.py to skip platform check for emscripten and wasi (gh-104397)Jeong, YunWon2023-05-121-1/+1
* gh-99108: Refresh HACL* from upstream (#104401)Jonathan Protzenko2023-05-111-0/+9
* gh-104301: Allow leading whitespace in disambiguated pdb statements (#104342)James Gerity2023-05-113-9/+38
* gh-104057: Fix direct invocation of test_support (GH-104069)Kirill Podoprigora2023-05-111-1/+1
* gh-87729: improve hit rate of LOAD_SUPER_ATTR specialization (#104270)Carl Meyer2023-05-112-4/+3
* GH-92184: Convert os.altsep to '/' in filenames when creating ZipInfo objects...Carey Metcalfe2023-05-111-0/+2
* gh-104357: fix inlined comprehensions that close over iteration var (#104368)Carl Meyer2023-05-101-0/+10
* GH-90208: Suppress OSError exceptions from `pathlib.Path.glob()` (GH-104141)Barney Gale2023-05-112-46/+25
* gh-103000: Optimise `dataclasses.asdict` for the common case (#104364)Alex Waygood2023-05-101-5/+12
* GH-87695: Fix OSError from `pathlib.Path.glob()` (GH-104292)Barney Gale2023-05-102-2/+11
* gh-104263: Rely on Py_NAN and introduce Py_INFINITY (GH-104202)Sebastian Berg2023-05-104-6/+15