summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* bpo-46198: rename duplicate tests and remove unused code (GH-30297)Nikita Sobolev2022-03-1010-15/+8
* bpo-46771: Implement asyncio context managers for handling timeouts (GH-31394)Andrew Svetlov2022-03-103-0/+382
* bpo-46581: Propagate private vars via _GenericAlias.copy_with (GH-31061)Matt Bogosian2022-03-102-7/+27
* bpo-40280: Skip more tests/features that don't apply to Emscripten (GH-31791)Christian Heimes2022-03-105-4/+27
* bpo-45138: Revert GH-28240: Expand traced SQL statements (GH-31788)Erlend Egeberg Aasland2022-03-091-60/+1
* bpo-46245: Add optional parameter dir_fd in shutil.rmtree() (GH-30365)Serhiy Storchaka2022-03-092-5/+33
* bpo-45138: Expand traced SQL statements in `sqlite3` trace callback (GH-28240)Erlend Egeberg Aasland2022-03-091-1/+60
* bpo-40280: Skip dysfunctional pipe tests on Emscripten (GH-31770)Christian Heimes2022-03-081-0/+12
* bpo-24959: fix unittest.assertRaises bug where traceback entries are dropped ...Irit Katriel2022-03-082-14/+94
* bpo-46955: Expose asyncio.base_events.Server as asyncio.Server (GH-31760)Stefan Zabka2022-03-081-1/+1
* bpo-46841: Don't use an oparg counter for `STORE_SUBSCR` (GH-31742)Brandt Bucher2022-03-082-2/+3
* bpo-40280: Block more non-working syscalls in Emscripten (GH-31757)Christian Heimes2022-03-087-9/+25
* bpo-44439: _ZipWriteFile.write() handle buffer protocol correctly (GH-29468)Ma Lin2022-03-082-1/+17
* bpo-40059: Add tomllib (PEP-680) (GH-31498)Taneli Hukkinen2022-03-0884-0/+1355
* bpo-43224: Implement PEP 646 changes to typing.py (GH-31021)Matthew Rahtz2022-03-082-22/+645
* bpo-46170: Improve the error message when subclassing NewType (GH-30268)James Hilton-Balfe2022-03-082-0/+26
* bpo-46841: Use inline caching for calls (GH-31709)Brandt Bucher2022-03-073-152/+152
* Merge remote-tracking branch 'upstream/main'Pablo Galindo2022-03-076-6/+71
|\
| * bpo-41370: Evaluate strings as forward refs in PEP 585 generics (GH-30900)Niklas Rosenstein2022-03-072-2/+48
| * bpo-46933: Make pwd module optional (GH-31700)Christian Heimes2022-03-074-4/+23
* | Python 3.11.0a6v3.11.0a6Pablo Galindo2022-03-071-22/+36
|/
* bpo-46940: Don't override existing AttributeError suggestion information (GH-...Pablo Galindo Salgado2022-03-071-0/+18
* bpo-43292: Fix file leak in `ET.iterparse()` when not exhausted (GH-31696)Jacob Walls2022-03-072-7/+17
* Use assertEqual, not assertEquals, in test_unicode (GH-31718)Dennis Sweeney2022-03-071-4/+4
* bpo-14156: Make argparse.FileType work correctly for binary file modes when a...MojoVampire2022-03-062-17/+106
* bpo-46921: Vectorcall support for `super()` (GH-31687)Ken Jin2022-03-061-0/+8
* Remove trailing spaces (GH-31695)Serhiy Storchaka2022-03-059-18/+18
* bpo-46927: Include the type's name in the error message for subscripting non-...Serhiy Storchaka2022-03-052-3/+3
* Lib/typing.py copy edits originating from GH-31061 (#31684)Matt Bogosian2022-03-051-3/+3
* bpo-25415: Remove confusing sentence from IOBase docstrings (PR-31631)slateny2022-03-041-3/+2
* bpo-46841: Fix error message hacks in `GET_AWAITABLE` (GH-31664)Brandt Bucher2022-03-042-3/+3
* bpo-46903: Handle str-subclasses in virtual instance dictionaries. (GH-31658)Mark Shannon2022-03-041-0/+24
* bpo-46913: Skip test_ctypes.test_shorts() on UBSan (GH-31674)Victor Stinner2022-03-031-0/+3
* bpo-46913: test_hashlib skips _sha3 tests on UBSan (GH-31673)Victor Stinner2022-03-031-8/+26
* bpo-46841: Use inline caching for attribute accesses (GH-31640)Brandt Bucher2022-03-033-6/+7
* bpo-46877: export unittest.doModuleCleanups in unittest package (#31613)Kumar Aditya2022-03-031-2/+2
* bpo-46874: Speed up sqlite3 user-defined aggregate 'step' method (GH-31604)Erlend Egeberg Aasland2022-03-031-2/+4
* bpo-46891: Fix creating a new instance of a module subclass with slots (GH-31...Mark Shannon2022-03-031-0/+19
* Fix EncodingWarning in libregrtest (GH-31654)Inada Naoki2022-03-031-1/+1
* bpo-40116: dict: Add regression test for iteration order. (GH-31550)Inada Naoki2022-03-031-0/+17
* bpo-46643: Fix stringized P.args/P.kwargs with get_type_hints (GH-31238)Gregory Beauregard2022-03-032-1/+14
* bpo-46195: Do not add `Optional` in `get_type_hints` (GH-30304)Nikita Sobolev2022-03-022-31/+17
* bpo-46845: Reduce dict size when all keys are Unicode (GH-31564)Inada Naoki2022-03-011-4/+8
* bpo-46841: Use inline cache for `BINARY_SUBSCR`. (GH-31618)Mark Shannon2022-03-014-4/+6
* bpo-46633: Skip tests on ASAN and/or MSAN builds (GH-31632)Victor Stinner2022-03-016-15/+39
* bpo-46841: Use inline caching for `COMPARE_OP` (GH-31622)Brandt Bucher2022-03-014-126/+129
* bpo-46771: Remove two controversial lines from Task.cancel() (GH-31623)Guido van Rossum2022-02-282-3/+10
* Statistics internals: Make fewer calls to _coerce() when data types are mixed...Raymond Hettinger2022-02-281-4/+9
* bpo-46841: Move the cache for `LOAD_GLOBAL` inline. (GH-31575)Mark Shannon2022-02-283-175/+176
* bpo-46841: Use inline caching for `UNPACK_SEQUENCE` (GH-31591)Brandt Bucher2022-02-282-2/+3