summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* 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
* bpo-39895: Move `pathlib.Path.touch()` implementation into the path accessor....Barney Gale2021-04-071-24/+18
* bpo-43105: Importlib now resolves relative paths when creating module spec ob...Steve Dower2021-04-079-2516/+2721
* bpo-39924: handle missing os functions more consistently in pathlib (GH-19220)Barney Gale2021-04-061-27/+16
* bpo-43567: Improved generated code refresh on Windows (GH-25120)Steve Dower2021-04-066-228/+109
* bpo-43755: Update docs to reflect that lambda is not allowed in `comp_if` sin...Saiyang Gou2021-04-063-3/+8
* bump the bytecode magic number (GH-25225)Dennis Sweeney2021-04-062-2/+2
* Update pattern matching docs for changes to the PEP (#25185)Ken Jin2021-04-062-3/+3
* bpo-42135: Deprecate implementations of find_module() and find_loader() (GH-2...Brett Cannon2021-04-0620-3640/+3808
* bpo-41870: Update What's News 3.10 about vectorcall (#25219)Dong-hee Na2021-04-061-0/+4
* Fix blurb for bpo-43176. (GH-25215)Eric V. Smith2021-04-061-1/+1
* bpo-41111: Don't build xxlimited with Py_TRACE_REFS macro (GH-25180)Hai Shi2021-04-061-3/+4
* bpo-43745: Actually updates Windows release to OpenSSL 1.1.1k. (GH-25213)Steve Dower2021-04-063-2/+4
* bpo-43683: Handle generator entry in bytecode (GH-25138)Mark Shannon2021-04-0610-2607/+2675
* bpo-43651: PEP 597: Fix pdeps used locale encoding (GH-25204)Inada Naoki2021-04-061-1/+1
* bpo-17305: Link to the third-party idna package. (GH-25208)Gregory P. Smith2021-04-061-0/+3
* bpo-43176: Fix processing of empty dataclasses (GH-24484)Iurii Kemaev2021-04-063-1/+26
* bpo-43651: PEP 597: Fix EncodingWarning in some tests (GH-25190)Inada Naoki2021-04-064-26/+27
* bpo-43651: PEP 597: Fix EncodingWarning in some tests (GH-25189)Inada Naoki2021-04-0611-63/+73
* bpo-42128: __match_args__ can't be a list anymore (GH-25203)Brandt Bucher2021-04-064-16/+26
* bpo-43651: Fix EncodingWarning in sysconfig (GH-25192)Inada Naoki2021-04-061-2/+3
* bpo-20503: Show how isinstance() works with ABC registered classes. (GH-25175)Raymond Hettinger2021-04-051-0/+35
* bpo-36470: Allow dataclasses.replace() to handle InitVars with default values...Zackery Spytz2021-04-053-1/+21
* bpo-43087: Fix error in ctypes "Incomplete Types" doc (GH-24404)Zackery Spytz2021-04-051-2/+2
* Fix typo in turtledemo.two_canvases. (GH-25194)Terry Jan Reedy2021-04-051-1/+1
* Post 3.10.0a7Pablo Galindo2021-04-051-1/+1
* Python 3.10.0a7v3.10.0a7Pablo Galindo2021-04-0592-5325/+8322
* Fix the "make suspicious" check on the pprint docs (GH-25193)Pablo Galindo2021-04-051-2/+2
* bpo-43084: Return bool instead of int from curses.window.enclose() (GH-24398)Serhiy Storchaka2021-04-055-19/+18
* bpo-43651: PEP 597: Fix EncodingWarning in some tests (GH-25181)Inada Naoki2021-04-0511-50/+55
* bpo-43651: PEP 597: Fix EncodingWarning in test_filecmp (GH-25159)Inada Naoki2021-04-051-6/+6
* bpo-43651: PEP 597: Fix test_email (GH-25158)Inada Naoki2021-04-052-27/+27
* bpo-41370: Add note about ForwardRefs and PEP585 generic types in docs (#25183)Ken Jin2021-04-041-2/+7
* bpo-24160: Fix test_pdb refleaks failure (GH-25182)Irit Katriel2021-04-041-3/+3
* bpo-27129: Update magic numbers and bootstrapping for GH-25069 (GH-25172)Dennis Sweeney2021-04-043-2/+3
* bpo-43651: PEP 597: Fix EncodingWarning in some tests (GH-25171)Inada Naoki2021-04-046-14/+14
* bpo-43325: Add FAQ entry for identity tests (GH-25168)Raymond Hettinger2021-04-042-3/+89
* bpo-43651: PEP 597: Fix EncodingWarning in some tests (GH-25145)Inada Naoki2021-04-0419-75/+78
* bpo-43720: Update import-related stdlib deprecation messages to say they will...Brett Cannon2021-04-035-7/+16