summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* bpo-43772: Fix TypeVar.__ror__ (GH-25339)Jelle Zijlstra2021-04-113-2/+13
* bpo-43783: Add ParamSpecArgs/Kwargs (GH-25298)Jelle Zijlstra2021-04-115-11/+91
* bpo-43764: Add match_args=False parameter to dataclass decorator and to make_...Eric V. Smith2021-04-114-19/+81
* Fix typo about line number in the 3.10 What's New document (GH-25328)Antti Haapala2021-04-111-1/+1
* bpo-41974: Remove part of the note regarding complex.__float__ (GH-25197)DevilXD2021-04-101-4/+1
* bpo-43753: Add Py_Is() and Py_IsNone() functions (GH-25227)Victor Stinner2021-04-109-38/+198
* bpo-43478: Fix formatting of NEWS entry (GH-25335)Pablo Galindo2021-04-101-1/+6
* bpo-43770: Refactor type_new() function (GH-25325)Victor Stinner2021-04-102-395/+734
* bpo-43798: Add source location attributes to alias (GH-25324)Matthew Suozzo2021-04-1011-19/+199
* bpo-40701: doc typo historcal -> historical (GH-25334)Gregory P. Smith2021-04-101-1/+1
* bpo-43739: Add type declaration Doc/extending/extending.rst exampleShreyan Avigyan2021-04-102-1/+2
* bpo-43478: Restrict use of Mock objects as specs (GH-25326)Matthew Suozzo2021-04-104-8/+65
* bpo-39899: Don't double-check directory name if we're requesting the current ...Barney Gale2021-04-091-8/+9
* bpo-40107: Switch to using io.open() for pathlib.Path.open() (GH-25240)Barney Gale2021-04-091-7/+3
* bpo-38820: OpenSSL 3.0.0: Use supported hashing algos in doc test (GH-25319)Christian Heimes2021-04-091-2/+2
* bpo-43794: OpenSSL 3.0.0: set OP_IGNORE_UNEXPECTED_EOF by default (GH-25309)Christian Heimes2021-04-094-1/+20
* bpo-43682: @staticmethod inherits attributes (GH-25268)Victor Stinner2021-04-098-22/+133
* bpo-43788: Generate version specific _ssl_data.h (GH-25300)Christian Heimes2021-04-097-82/+15092
* bpo-4379: Skip TLS 1.0/1.1 tests under OpenSSL 3.0.0 (GH-25304)Christian Heimes2021-04-092-0/+7
* bpo-43789: OpenSSL 3.0.0 Don't call passwd callback again in error case (GH-2...Christian Heimes2021-04-092-0/+9
* bpo-43774: Document the Python Build System (GH-25302)Victor Stinner2021-04-091-7/+116
* bpo-43774: Doc job of Azure Pipelines uses Doc/requirements.txt (GH-25296)Victor Stinner2021-04-091-1/+2
* Simplify _PyPegen_fill_token in pegen.c (GH-25295)Pablo Galindo2021-04-091-58/+64
* Sanitize macros and debug functions in pegen.c (GH-25291)Pablo Galindo2021-04-093-3/+18
* bpo-43774: Enhance configure documentation (GH-25293)Victor Stinner2021-04-081-50/+125
* Break down some complex functions in pegen.c for readability (GH-25292)Pablo Galindo2021-04-081-79/+91
* Fix possible refleak involving _PyArena_AddPyObject (GH-25289)Erlend Egeberg Aasland2021-04-081-1/+4
* bpo-39702: Remove dotted_name from decorator documentation (GH-25234)Saiyang Gou2021-04-081-1/+0
* bpo-43778: Fix Sphinx glossary_search extension (GH-25286)Victor Stinner2021-04-082-5/+13
* bpo-43774: Document configure options (GH-25283)Victor Stinner2021-04-0820-47/+678
* bpo-43764: Fix `__match_args__` generation logic for dataclasses (GH-25284)Brandt Bucher2021-04-083-1/+11
* bpo-43760: Streamline dispatch sequence for machines without computed gotos. ...Mark Shannon2021-04-081-61/+52
* bpo-43770: _PyTypes_Init() inits _PyAnextAwaitable_Type (GH-25266)Victor Stinner2021-04-083-2/+6
* Fix broken test for MutableSet.pop() (GH-25209)Stepan Sindelar2021-04-071-2/+6
* bpo-39899: os.path.expanduser(): don't guess other Windows users' home direct...Barney Gale2021-04-077-68/+63
* bpo-43770: _PyTypes_Init() inits more static types (GH-25265)Victor Stinner2021-04-071-0/+23
* bpo-43770: Sort types in _PyTypes_Init() (GH-25263)Victor Stinner2021-04-071-71/+76
* bpo-42923: Fix _Py_DumpExtensionModules() for NULL sysdict (GH-25262)Victor Stinner2021-04-071-6/+8
* bpo-43244: Rename pycore_ast.h functions to _PyAST_xxx() (GH-25252)Victor Stinner2021-04-079-900/+851
* bpo-36540: Improve doc of function definition regarding positional-only argum...Saiyang Gou2021-04-071-2/+8
* bpo-39659: Route calls from pathlib.Path to os.getcwd() via the path accessor...Barney Gale2021-04-071-4/+6
* bpo-42999: Expand and clarify pathlib.Path.link_to() documentation. (GH-24294)Barney Gale2021-04-072-15/+28
* bpo-39906: Add follow_symlinks parameter to pathlib.Path.stat() and chmod() (...Barney Gale2021-04-074-17/+49
* bpo-43495 : Push missing frame block in compile.c (GH-24865)tomKPZ2021-04-071-1/+10
* Improve CDN purge script (GH-25251)Steve Dower2021-04-071-0/+3
* bpo-43075: Fix ReDoS in urllib AbstractBasicAuthHandler (GH-24391)Yeting Li2021-04-072-1/+2
* bpo-43244: Remove Yield macro from pycore_ast.h (GH-25243)Victor Stinner2021-04-078-325/+319
* Correct micro release number and add a couple of asserts. (GH-25224)Mark Shannon2021-04-072-4/+4
* bpo-38605: Update "Future statements" docs since PEP 563 is always enabled (G...Saiyang Gou2021-04-071-5/+2
* bpo-40038: pathlib: remove partial support for preserving accessor when modif...Barney Gale2021-04-071-33/+8