summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* Removed ambiguity in __init_subclass__ docs (GH-31540)David Gilbertson2022-03-081-1/+1
* bpo-46494: Mention the typing_extensions pkg in typing docs (GH-31260)Meer Suri2022-03-081-0/+4
* bpo-43224: Implement PEP 646 changes to typing.py (GH-31021)Matthew Rahtz2022-03-083-22/+646
* importlib.metadata: Remove empty footnote section (GH-30451)Ned Batchelder2022-03-081-3/+0
* bpo-46170: Improve the error message when subclassing NewType (GH-30268)James Hilton-Balfe2022-03-083-0/+27
* bpo-45680: Improve docs on subscriptions w.r.t. `GenericAlias` objects (GH-29...Alex Waygood2022-03-081-20/+30
* bpo-46933: Fix make distclean regression (GH-31737)Erlend Egeberg Aasland2022-03-071-1/+1
* bpo-46932: Update bundled libexpat to 2.4.7 (GH-31736)Steve Dower2022-03-073-14/+156
* bpo-46841: Use inline caching for calls (GH-31709)Brandt Bucher2022-03-0716-732/+491
* bpo-44549: Update bzip2 to 1.0.8 in Windows builds to mitigate CVE-2016-3189 ...Steve Dower2022-03-074-3/+5
* Merge remote-tracking branch 'upstream/main'Pablo Galindo2022-03-0726-566/+572
|\
| * bpo-41370: Evaluate strings as forward refs in PEP 585 generics (GH-30900)Niklas Rosenstein2022-03-073-2/+49
| * bpo-46948: Fix CVE-2022-26488 by ensuring the Windows Installer correctly use...Steve Dower2022-03-0712-4/+27
| * bpo-46933: Make pwd module optional (GH-31700)Christian Heimes2022-03-0711-560/+496
* | Post 3.11.0a6Pablo Galindo2022-03-071-1/+1
* | Python 3.11.0a6v3.11.0a6Pablo Galindo2022-03-07122-272/+1244
|/
* bpo-46940: Don't override existing AttributeError suggestion information (GH-...Pablo Galindo Salgado2022-03-074-15/+48
* bpo-46937: convert remaining functions to AC in _weakref (GH-31705)Kumar Aditya2022-03-072-22/+73
* bpo-43292: Fix file leak in `ET.iterparse()` when not exhausted (GH-31696)Jacob Walls2022-03-074-7/+20
* Use assertEqual, not assertEquals, in test_unicode (GH-31718)Dennis Sweeney2022-03-071-4/+4
* Clean up CODEOWNERS (#31715)Jelle Zijlstra2022-03-071-16/+8
* bpo-45582: Don't fail if ENV_PATH is None in getpath.py (GH-31699)Christian Heimes2022-03-061-1/+1
* Update grammar_grapher with the new forced (&&) directive (#31704)Luca Chiodini2022-03-061-0/+3
* bpo-14156: Make argparse.FileType work correctly for binary file modes when a...MojoVampire2022-03-063-17/+110
* bpo-46921: Vectorcall support for `super()` (GH-31687)Ken Jin2022-03-063-2/+62
* bpo-46864: Deprecate PyBytesObject.ob_shash. (GH-31598)Inada Naoki2022-03-064-1/+23
* Remove trailing spaces (GH-31695)Serhiy Storchaka2022-03-0513-23/+24
* bpo-46927: Include the type's name in the error message for subscripting non-...Serhiy Storchaka2022-03-054-3/+8
* Lib/typing.py copy edits originating from GH-31061 (#31684)Matt Bogosian2022-03-051-3/+3
* bpo-38738: Fix formatting of True and False in the threading documentation (G...Géry Ogam2022-03-041-8/+8
* bpo-46841: Fix BINARY_OP's handling of inline caches (GH-31671)Brandt Bucher2022-03-043-3/+7
* bpo-25415: Remove confusing sentence from IOBase docstrings (PR-31631)slateny2022-03-044-13/+8
* bpo-46541: Remove usage of _Py_IDENTIFIER from lzma module (GH-31683)Dong-hee Na2022-03-041-10/+10
* bpo-46841: Fix error message hacks in `GET_AWAITABLE` (GH-31664)Brandt Bucher2022-03-048-32/+37
* bpo-46903: Handle str-subclasses in virtual instance dictionaries. (GH-31658)Mark Shannon2022-03-045-10/+46
* bpo-46744: Move Windows ARM64 installation directory to correct ProgramFiles ...Steve Dower2022-03-043-38/+4
* bpo-46355: Update pythoncapi_compat project URL (GH-31670)Victor Stinner2022-03-031-2/+2
* 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-0310-270/+292
* bpo-46913: Fix test_faulthandler.test_read_null() on UBSan (GH31672)Victor Stinner2022-03-031-16/+18
* bpo-45459: Use type names in the internal C API (GH-31669)Victor Stinner2022-03-035-14/+11
* bpo-45459: Fix PyModuleDef_Slot type in the limited C API (GH-31668)Victor Stinner2022-03-032-4/+3
* bpo-46913: Fix test_faulthandler.test_sigfpe() on UBSAN (GH-31662)Victor Stinner2022-03-032-2/+23
* bpo-46841: Improve the failure stats for COMPARE_OP (GH-31663)Brandt Bucher2022-03-032-0/+7
* bpo-46877: export unittest.doModuleCleanups in unittest package (#31613)Kumar Aditya2022-03-032-2/+3
* Move check for str-only keys in LOAD_GLOBAL specializations to specialization...Mark Shannon2022-03-032-15/+14
* bpo-6634: [doc] clarify that sys.exit() does not always exit the interpreter ...vidhya2022-03-031-5/+3
* bpo-46874: Speed up sqlite3 user-defined aggregate 'step' method (GH-31604)Erlend Egeberg Aasland2022-03-034-6/+13
* bpo-46891: Fix creating a new instance of a module subclass with slots (GH-31...Mark Shannon2022-03-033-1/+24