summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* bpo-43751: Fix anext() bug where it erroneously returned None (GH-25238)Dennis Sweeney2021-04-111-5/+135
* bpo-43772: Fix TypeVar.__ror__ (GH-25339)Jelle Zijlstra2021-04-112-2/+12
* bpo-43783: Add ParamSpecArgs/Kwargs (GH-25298)Jelle Zijlstra2021-04-112-7/+62
* bpo-43764: Add match_args=False parameter to dataclass decorator and to make_...Eric V. Smith2021-04-112-14/+65
* bpo-43798: Add source location attributes to alias (GH-25324)Matthew Suozzo2021-04-103-5/+29
* bpo-43478: Restrict use of Mock objects as specs (GH-25326)Matthew Suozzo2021-04-103-8/+64
* 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-43794: OpenSSL 3.0.0: set OP_IGNORE_UNEXPECTED_EOF by default (GH-25309)Christian Heimes2021-04-091-1/+3
* bpo-43682: @staticmethod inherits attributes (GH-25268)Victor Stinner2021-04-094-13/+41
* bpo-4379: Skip TLS 1.0/1.1 tests under OpenSSL 3.0.0 (GH-25304)Christian Heimes2021-04-091-0/+5
* bpo-43764: Fix `__match_args__` generation logic for dataclasses (GH-25284)Brandt Bucher2021-04-082-1/+9
* 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-074-64/+50
* bpo-43244: Rename pycore_ast.h functions to _PyAST_xxx() (GH-25252)Victor Stinner2021-04-071-27/+27
* 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-071-8/+14
* bpo-39906: Add follow_symlinks parameter to pathlib.Path.stat() and chmod() (...Barney Gale2021-04-072-14/+32
* bpo-43075: Fix ReDoS in urllib AbstractBasicAuthHandler (GH-24391)Yeting Li2021-04-071-1/+1
* Correct micro release number and add a couple of asserts. (GH-25224)Mark Shannon2021-04-071-1/+1
* 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-075-79/+130
* bpo-39924: handle missing os functions more consistently in pathlib (GH-19220)Barney Gale2021-04-061-27/+16
* bump the bytecode magic number (GH-25225)Dennis Sweeney2021-04-061-1/+1
* bpo-42135: Deprecate implementations of find_module() and find_loader() (GH-2...Brett Cannon2021-04-0614-34/+87
* bpo-43683: Handle generator entry in bytecode (GH-25138)Mark Shannon2021-04-062-0/+2
* bpo-43176: Fix processing of empty dataclasses (GH-24484)Iurii Kemaev2021-04-062-1/+25
* 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-062-8/+24
* bpo-43651: Fix EncodingWarning in sysconfig (GH-25192)Inada Naoki2021-04-061-2/+3
* bpo-36470: Allow dataclasses.replace() to handle InitVars with default values...Zackery Spytz2021-04-052-1/+19
* Fix typo in turtledemo.two_canvases. (GH-25194)Terry Jan Reedy2021-04-051-1/+1
* Python 3.10.0a7v3.10.0a7Pablo Galindo2021-04-051-8/+10
* bpo-43084: Return bool instead of int from curses.window.enclose() (GH-24398)Serhiy Storchaka2021-04-051-7/+6
* 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-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-041-1/+1
* bpo-43651: PEP 597: Fix EncodingWarning in some tests (GH-25171)Inada Naoki2021-04-046-14/+14
* 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-034-7/+14
* bpo-43672: raise ImportWarning when calling find_loader() (GH-25119)Brett Cannon2021-04-029-93/+74
* bpo-24160: Fix breakpoints persistence across multiple pdb sessions (GH-21989)Irit Katriel2021-04-023-13/+143
* bpo-31956: Add start and stop parameters to array.index() (GH-25059)Zackery Spytz2021-04-021-0/+11
* bpo-43651: PEP 597: Fix EncodingWarning in some tests (GH-25142)Inada Naoki2021-04-0210-30/+35
* bpo-43651: Fix test_compileall with PEP 597 (GH-25128)Inada Naoki2021-04-023-9/+9
* bpo-43651: Fix EncodingWarning in lib2to3/pgen2/pgen.py (GH-25127)Inada Naoki2021-04-011-1/+1