summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* [3.11] gh-104499: IDLE - fix completions for tk aqua 8.7 (GH-104591) (#104596)3.11Miss Islington (bot)2023-05-183-7/+6
* [3.11] gh-104340: Suppress warning about unawaited exception for closed pipe ...Miss Islington (bot)2023-05-182-0/+4
* [3.11] gh-102153: Start stripping C0 control and space chars in `urlsplit` (G...Miss Islington (bot)2023-05-174-3/+119
* [3.11] gh-104496: IDLE - fix About for mixed tcl/tk versions (GH-104585) (#10...Miss Islington (bot)2023-05-174-23/+22
* [3.11] typing: Add more tests for TypeVar (GH-104571) (#104577)Jelle Zijlstra2023-05-171-0/+27
* [3.11] gh-103861: Fix Zip64 extensions not being properly applied in some cas...Gregory P. Smith2023-05-173-15/+172
* [3.11] gh-87474: Fix file descriptor leaks in subprocess.Popen (GH-96351) (#1...Miss Islington (bot)2023-05-172-130/+164
* [3.11] gh-104494: Update certain Tkinter pack/place tests for Tk 8.7 errors (...Miss Islington (bot)2023-05-162-4/+8
* [3.11] gh-75367: Fix data descriptor detection in inspect.getattr_static (GH-...Miss Islington (bot)2023-05-163-2/+8
* [3.11] gh-104539: Fix indentation error in logging.config.rst (GH-104545) (#1...Miss Islington (bot)2023-05-161-1/+1
* [3.11] gh-104482: Fix error handling bugs in ast.c (#104514)Irit Katriel2023-05-163-19/+44
* [3.11] gh-104461: Run tkinter test_configure_screen on X11 only (GH-104526)Miss Islington (bot)2023-05-162-0/+5
* [3.11] gh-67056: document that registering/unregistering an atexit func from ...Miss Islington (bot)2023-05-152-0/+5
* [3.11] gh-98539: Make _SSLTransportProtocol.abort() safe to call when closed ...Miss Islington (bot)2023-05-141-1/+2
* [3.11] gh-104337: Clarify random.gammavariate doc entry (GH-104410) (#104481)Miss Islington (bot)2023-05-141-3/+6
* [3.11] Minor improvements to typing docs (GH-104465) (#104475)Miss Islington (bot)2023-05-141-4/+6
* [3.11] GH-71383: IDLE - Document testing subsets of modules (GH-104463) (#104...Miss Islington (bot)2023-05-143-20/+29
* [3.11] gh-75710: IDLE - add docstrings and comments to editor module (GH-1044...Miss Islington (bot)2023-05-131-25/+102
* [3.11] Add a mention of PYTHONBREAKPOINT to breakpoint() docs (GH-104430) (#1...Miss Islington (bot)2023-05-131-0/+7
* [3.11] gh-99836: IDLE - update news.txt for 3.11+ (#104445)Terry Jan Reedy2023-05-131-2/+13
* [3.11] GH-104405: Add missing PEP 523 checks (GH-104441)Brandt Bucher2023-05-124-18/+36
* [3.11] Fix refleak in super_descr_get (GH-104440)Brandt Bucher2023-05-121-1/+3
* [3.11] GH-94841: Fix usage of Py_ALWAYS_INLINE (GH-104439)Brandt Bucher2023-05-121-1/+1
* [3.11] gh-103204: `http.server` - Enforce that HTTP version numbers must cons...Miss Islington (bot)2023-05-123-0/+28
* [3.11] gh-101117: Improve accuracy of sqlite3.Cursor.rowcount docs (#104287) ...Erlend E. Aasland2023-05-111-1/+4
* [3.11] GH-87695: Fix OSError from `pathlib.Path.glob()` (GH-104292) (GH-104362)Miss Islington (bot)2023-05-103-2/+13
* [3.11] gh-103247: clear the module cache in a test in test_importlib/extensio...Miss Islington (bot)2023-05-101-9/+10
* [3.11] gh-104010: Separate and improve docs for `typing.get_origin` and `typi...Miss Islington (bot)2023-05-101-9/+22
* [3.11] gh-103960: Dark mode: invert image brightness (GH-103983) (#104358)Miss Islington (bot)2023-05-103-0/+3
* [3.11] gh-103848: Adds checks to ensure that bracketed hosts found by urlspli...Miss Islington (bot)2023-05-103-1/+43
* [3.11] gh-48241: Clarify URL needs to be encoded when provided to urlopen and...Miss Islington (bot)2023-05-102-3/+4
* [3.11] gh-102327: Extend docs for "url" and "headers" parameters to HTTPConne...Miss Islington (bot)2023-05-091-2/+18
* [3.11] gh-104328: Fix typo in ``typing.Generic`` multiple inheritance error m...Miss Islington (bot)2023-05-091-1/+1
* [3.11] gh-99889: Fix directory traversal security flaw in uu.decode() (GH-104...Miss Islington (bot)2023-05-093-1/+38
* [3.11] [doc] logging.rst - Change link to point directly to the Google Group....Miss Islington (bot)2023-05-091-1/+1
* [3.11] gh-102500: collections.abc.Buffer doesn't exist in 3.11 (#104317)Shantanu2023-05-091-1/+1
* [3.11] GH-104308: socket.getnameinfo should release the GIL (GH-104307) (#104...Miss Islington (bot)2023-05-082-0/+3
* [3.11] GH-104284: Fix documentation gettext build (GH-104296) (#104299)Miss Islington (bot)2023-05-081-10/+10
* [3.11] GH-104145: Use fully-qualified cross reference types for the bisect mo...Miss Islington (bot)2023-05-081-10/+12
* [3.11] gh-103193: Improve `getattr_static` test coverage (GH-104286) (#104290)Miss Islington (bot)2023-05-081-0/+29
* [3.11] gh-102500: Remove mention of bytes shorthand (#104281) (#104288)Alex Waygood2023-05-081-8/+4
* [3.11] gh-104265 Disallow instantiation of `_csv.Reader` and `_csv.Writer` (G...Miss Islington (bot)2023-05-083-3/+14
* [3.11] gh-100370: fix OverflowError in sqlite3.Connection.blobopen for 32-bit...Erlend E. Aasland2023-05-084-9/+36
* [3.11] gh-103225: Fixed zero lineno issue for pdb (#103265) (#104262)Tian Gao2023-05-073-2/+39
* [3.11] gh-96670: Raise SyntaxError when parsing NULL bytes (GH-97594) (#104195)Lysandros Nikolaou2023-05-079-22/+77
* [3.11] Re-enable commented-out test in test_generators.py (GH-104130) (#104261)Miss Islington (bot)2023-05-071-5/+4
* [3.11] gh-104018: remove unused format "z" handling in string formatfloat() (...Miss Islington (bot)2023-05-074-8/+0
* [3.11] gh-104254: Document the optional keyword-only "context" argument to Ta...Miss Islington (bot)2023-05-071-4/+8
* [3.11] gh-103886: Improve `builtins.__doc__` (GH-104179) (#104257)Miss Islington (bot)2023-05-071-2/+9
* [3.11] gh-101640: Make argparse _print_message catch any write error (GH-1018...Miss Islington (bot)2023-05-063-3/+37