summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Expand)AuthorAgeFilesLines
...
| * bpo-46933: Make pwd module optional (GH-31700)Christian Heimes2022-03-071-0/+1
* | Python 3.11.0a6v3.11.0a6Pablo Galindo2022-03-07119-247/+1205
|/
* bpo-46940: Don't override existing AttributeError suggestion information (GH-...Pablo Galindo Salgado2022-03-071-0/+2
* bpo-43292: Fix file leak in `ET.iterparse()` when not exhausted (GH-31696)Jacob Walls2022-03-072-0/+3
* bpo-14156: Make argparse.FileType work correctly for binary file modes when a...MojoVampire2022-03-061-0/+4
* bpo-46921: Vectorcall support for `super()` (GH-31687)Ken Jin2022-03-061-0/+1
* bpo-46864: Deprecate PyBytesObject.ob_shash. (GH-31598)Inada Naoki2022-03-061-0/+1
* bpo-46927: Include the type's name in the error message for subscripting non-...Serhiy Storchaka2022-03-051-0/+2
* bpo-46841: Fix BINARY_OP's handling of inline caches (GH-31671)Brandt Bucher2022-03-041-0/+2
* bpo-46841: Fix error message hacks in `GET_AWAITABLE` (GH-31664)Brandt Bucher2022-03-041-0/+2
* bpo-46903: Handle str-subclasses in virtual instance dictionaries. (GH-31658)Mark Shannon2022-03-041-0/+2
* bpo-46744: Move Windows ARM64 installation directory to correct ProgramFiles ...Steve Dower2022-03-041-0/+3
* bpo-46841: Use inline caching for attribute accesses (GH-31640)Brandt Bucher2022-03-031-0/+2
* bpo-46913: Fix test_faulthandler.test_sigfpe() on UBSAN (GH-31662)Victor Stinner2022-03-031-0/+3
* bpo-46841: Improve the failure stats for COMPARE_OP (GH-31663)Brandt Bucher2022-03-031-0/+2
* bpo-46877: export unittest.doModuleCleanups in unittest package (#31613)Kumar Aditya2022-03-031-0/+1
* bpo-46891: Fix creating a new instance of a module subclass with slots (GH-31...Mark Shannon2022-03-031-0/+3
* bpo-46643: fix NEWS entry (GH-31651)Jelle Zijlstra2022-03-031-1/+3
* bpo-40116: dict: Add regression test for iteration order. (GH-31550)Inada Naoki2022-03-032-1/+3
* bpo-46643: Fix stringized P.args/P.kwargs with get_type_hints (GH-31238)Gregory Beauregard2022-03-031-0/+1
* bpo-46860: Respect `--with-suffix` on case-insensitive file systems (GH-31593)Brett Cannon2022-03-021-0/+1
* bpo-46195: Do not add `Optional` in `get_type_hints` (GH-30304)Nikita Sobolev2022-03-021-0/+3
* bpo-46848: Use stringlib/fastsearch in mmap (GH-31625)Dennis Sweeney2022-03-021-0/+3
* bpo-46845: Reduce dict size when all keys are Unicode (GH-31564)Inada Naoki2022-03-011-0/+3
* bpo-46841: Use inline cache for `BINARY_SUBSCR`. (GH-31618)Mark Shannon2022-03-011-0/+1
* bpo-46311: Clean up PyLong_FromLong and PyLong_FromLongLong (GH-30496)Mark Dickinson2022-03-011-0/+3
* bpo-46841: Use inline caching for `COMPARE_OP` (GH-31622)Brandt Bucher2022-03-011-0/+1
* bpo-46841: Move the cache for `LOAD_GLOBAL` inline. (GH-31575)Mark Shannon2022-02-281-0/+1
* bpo-46567: Add Tcl/Tk build for Windows ARM64 (GH-31574)Steve Dower2022-02-281-0/+2
* bpo-46841: Use inline caching for `UNPACK_SEQUENCE` (GH-31591)Brandt Bucher2022-02-281-0/+1
* bpo-46786: Make ElementTree write the HTML tags embed, source, track, wbr as ...Jannis Vajen2022-02-271-0/+2
* bpo-45735: Promise the long-time truth that `args=list` works (GH-30982)Charlie Zhao2022-02-261-0/+1
* bpo-46852: Remove the float.__set_format__() method (GH-31585)Victor Stinner2022-02-251-0/+4
* bpo-46712: Share global string identifiers in deepfreeze (GH-31261)Kumar Aditya2022-02-251-0/+1
* bpo-46808: remove NEXT_BLOCK() from compile.c (GH-31448)Irit Katriel2022-02-251-0/+1
* bpo-46841: Use *inline* caching for `BINARY_OP` (GH-31543)Brandt Bucher2022-02-251-0/+2
* bpo-46836: Move PyFrameObject to pycore_frame.h (GH-31530)Victor Stinner2022-02-251-0/+2
* bpo-46756: Fix authorization check in urllib.request (GH-31353)Serhiy Storchaka2022-02-251-0/+5
* bpo-46748: Don't import <stdbool.h> in public headers (GH-31553)Petr Viktorin2022-02-251-0/+2
* bpo-46852: Rename float.__set_format__() to float.__setformat__() (GH-31558)Victor Stinner2022-02-251-0/+3
* bpo-46656: Remove Py_NO_NAN macro (GH-31160)Victor Stinner2022-02-252-3/+4
* bpo-46656: Building Python now requires a C11 compiler (GH-31557)Victor Stinner2022-02-251-0/+2
* bpo-46623: Skip two test_zlib tests on s390x (GH-31096)Victor Stinner2022-02-241-0/+2
* bpo-45898: Remove duplicate symbols from _ctypes/cfield.c (GH-29791)Christian Heimes2022-02-241-0/+2
* bpo-45107: Specialize `LOAD_METHOD` for instances with dict. (GH-31531)Mark Shannon2022-02-241-0/+1
* bpo-46430: Fix memory leak in interned strings of deep-frozen modules (GH-31549)Kumar Aditya2022-02-241-0/+1
* bpo-46823: Implement LOAD_FAST__LOAD_ATTR_INSTANCE_VALUE superinstruction (GH...Dennis Sweeney2022-02-241-0/+1
* bpo-44337: Shrink the LOAD_ATTR/STORE_ATTR caches (GH-31517)Brandt Bucher2022-02-231-0/+2
* closes bpo-46736: SimpleHTTPRequestHandler now uses HTML5. (GH-31533)Dong-hee Na2022-02-231-0/+2
* bpo-45412: Add _PY_SHORT_FLOAT_REPR macro (GH-31171)Victor Stinner2022-02-231-0/+2