summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* gh-104392: Remove _paramspec_tvars from typing (#104393)Jelle Zijlstra2023-05-112-13/+8
* gh-104396: uuid.py to skip platform check for emscripten and wasi (gh-104397)Jeong, YunWon2023-05-111-1/+1
* gh-99108: Refresh HACL* from upstream (#104401)Jonathan Protzenko2023-05-113-2/+11
* gh-104301: Allow leading whitespace in disambiguated pdb statements (#104342)James Gerity2023-05-115-12/+50
* 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-1113-352/+374
* gh-101819: Fix inverted debug preprocessor check in winconsoleio.c (#104388)Erlend E. Aasland2023-05-111-1/+1
* gh-87849: fix SEND specialization family definition (GH-104268)Carl Meyer2023-05-113-176/+177
* gh-101819: Adapt _io.IOBase.seek and _io.IOBase.truncate to Argument Clinic (...Erlend E. Aasland2023-05-112-22/+135
* gh-101819: Adapt _io._Buffered* methods to Argument Clinic (#104367)Erlend E. Aasland2023-05-112-56/+328
* gh-101819: Refactor `_io` futher in preparation for module isolation (#104369)Erlend E. Aasland2023-05-115-116/+268
* gh-101819: Adapt _io.TextIOBase methods to Argument Clinic (#104383)Erlend E. Aasland2023-05-112-40/+233
* gh-101117: Improve accuracy of sqlite3.Cursor.rowcount docs (#104287)Erlend E. Aasland2023-05-111-1/+4
* GH-92184: Convert os.altsep to '/' in filenames when creating ZipInfo objects...Carey Metcalfe2023-05-112-0/+5
* gh-104357: fix inlined comprehensions that close over iteration var (#104368)Carl Meyer2023-05-112-6/+23
* GH-90208: Suppress OSError exceptions from `pathlib.Path.glob()` (GH-104141)Barney Gale2023-05-113-46/+29
* GH-102181: Improve specialization stats for SEND (GH-102182)penguin_wwy2023-05-104-44/+49
* gh-103000: Optimise `dataclasses.asdict` for the common case (#104364)Alex Waygood2023-05-102-5/+14
* gh-103538: Remove unused TK_AQUA code (GH-103539)Christopher Chavez2023-05-103-64/+3
* GH-87695: Fix OSError from `pathlib.Path.glob()` (GH-104292)Barney Gale2023-05-103-2/+13
* gh-104263: Rely on Py_NAN and introduce Py_INFINITY (GH-104202)Sebastian Berg2023-05-1012-198/+44
* gh-104010: Separate and improve docs for `typing.get_origin` and `typing.get_...chgnrdv2023-05-101-9/+22
* gh-101819: Adapt _io._BufferedIOBase_Type methods to Argument Clinic (#104355)Erlend E. Aasland2023-05-102-44/+236
* gh-103960: Dark mode: invert image brightness (#103983)Hugo van Kemenade2023-05-103-0/+3
* gh-104252: Immortalize Py_EMPTY_KEYS (gh-104253)Eric Snow2023-05-103-14/+27
* gh-101819: Clean up _io windows console io after gh-104197 (#104354)Erlend E. Aasland2023-05-103-3/+3
* gh-101819: Harden _io init (#104352)Erlend E. Aasland2023-05-101-3/+4
* gh-103247: clear the module cache in a test in test_importlib/extensions/test...sunmy20192023-05-101-9/+10
* gh-103848: Adds checks to ensure that bracketed hosts found by urlsplit are o...JohnJamesUtley2023-05-103-1/+43
* gh-74895: adjust tests to work on Solaris (#104326)Jakub KulĂ­k2023-05-091-6/+6
* gh-101819: Refactor _io in preparation for module isolation (#104334)Erlend E. Aasland2023-05-093-42/+80
* gh-90953: Don't use deprecated AST nodes in clinic.py (#104322)Alex Waygood2023-05-091-9/+3
* gh-102327: Extend docs for "url" and "headers" parameters to HTTPConnection.r...David Foster2023-05-091-2/+18
* gh-104328: Fix typo in ``typing.Generic`` multiple inheritance error message ...Kirill Podoprigora2023-05-091-1/+1
* gh-97696 Add documentation for get_coro() behavior with eager tasks (#104304)Jacob Bower2023-05-091-0/+11
* gh-97933: (PEP 709) inline list/dict/set comprehensions (#101441)Carl Meyer2023-05-0927-695/+1243
* gh-99889: Fix directory traversal security flaw in uu.decode() (#104096)Sam Carroll2023-05-093-1/+38
* gh-104184: fix building --with-pydebug --enable-pystats (#104217)Carl Meyer2023-05-091-1/+1
* gh-104139: Add itms-services to uses_netloc urllib.parse. (#104312)Gregory P. Smith2023-05-093-15/+23
* gh-104240: return code unit metadata from codegen (#104300)Irit Katriel2023-05-094-6/+50
* gh-104276: Make `_struct.unpack_iterator` type use type flag instead of custo...chgnrdv2023-05-091-7/+1
* gh-97696: Move around and update the whatsnew entry for asyncio eager task fa...Itamar Ostricher2023-05-091-5/+5
* gh-103193: Fix refleaks in `test_inspect` and `test_typing` (#104320)Alex Waygood2023-05-091-0/+7
* require-pr-label.yml: Add missing "permissions:" (#104309)Sebastian Pipping2023-05-091-0/+4
* gh-90656: Add platform triplets for 64-bit LoongArch (LA64) (#30939)Zhang Na2023-05-094-0/+43
* gh-104180: Read SOCKS proxies from macOS System Configuration (#104181)samschott2023-05-092-0/+7
* gh-97696 Remove unnecessary check for eager_start kwarg (#104188)Jacob Bower2023-05-091-4/+17
* GH-104308: socket.getnameinfo should release the GIL (#104307)Nathaniel J. Smith2023-05-082-0/+3
* gh-104310: Add importlib.util.allowing_all_extensions() (gh-104311)Eric Snow2023-05-084-0/+163
* gh-99113: A Per-Interpreter GIL! (gh-104210)Eric Snow2023-05-087-52/+24