summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* gh-101196: Make isdir/isfile/exists faster on Windows (GH-101324)Michael Droettboom2023-02-082-1/+563
* GH-101578: Normalize the current exception (GH-101607)Mark Shannon2023-02-083-12/+54
* gh-101656: Fix "conversion from Py_ssize_t to int" warning in `_testcapimodul...Nikita Sobolev2023-02-071-3/+3
* gh-101072: support default and kw default in PyEval_EvalCodeEx for 3.11+ (#1...Matthieu Dartiailh2023-02-071-1/+140
* gh-99108: Replace SHA2-224 & 256 with verified code from HACL* (#99109)Jonathan Protzenko2023-02-0711-346/+1753
* gh-59956: Add a Test to Verify GILState Matches the "Current" Thread State (g...Eric Snow2023-02-061-0/+37
* gh-101609: Fix "‘state’ may be used uninitialized" warning in `_xxinterpc...Nikita Sobolev2023-02-061-2/+3
* gh-101543: Ensure Windows registry path is only used when stdlib can't be fou...Steve Dower2023-02-061-19/+12
* gh-76961: Fix buildbot failures in test_pep3118 (#101587)Mark Dickinson2023-02-061-3/+3
* gh-101372: Fix unicodedata.is_normalized to properly handle the UCD 3… (gh-...Dong-hee Na2023-02-061-1/+1
* gh-76961: Fix the PEP3118 format string for ctypes.Structure (#5561)Eric Wieser2023-02-051-30/+87
* Revert "gh-89381: Fix invalid signatures of math/cmath.log (#101404)" (#101580)Mark Dickinson2023-02-054-35/+41
* GH-100485: Create an alternative code path when an accurate fma() implementat...Raymond Hettinger2023-02-041-0/+43
* gh-101322: Ensure test_zlib.ZlibDecompressorTest runs, fix errors in ZlibDeco...Ruben Vorderman2023-02-041-0/+1
* gh-101524: Split Up the _xxsubinterpreters Module (gh-101526)Eric Snow2023-02-045-2178/+2392
* gh-101277: Port more `itertools` static types to heap types (#101303)Erlend E. Aasland2023-02-032-328/+202
* gh-101277: Isolate itertools, add group and _grouper types to module state (#...Erlend E. Aasland2023-02-012-111/+141
* gh-101409: Improve generated clinic code for self type checks (#101411)Erlend E. Aasland2023-01-318-48/+47
* gh-101469: Optimise get_io_state() by using _PyModule_GetState() (GH-101470)Erlend E. Aasland2023-01-311-1/+2
* gh-59956: Clarify Runtime State Status Expectations (gh-101308)Eric Snow2023-01-301-1/+1
* GH-101291: Refactor the `PyLongObject` struct into object header and PyLongVa...Mark Shannon2023-01-301-5/+5
* gh-89381: Fix invalid signatures of math/cmath.log (#101404)Sergey B Kirpichev2023-01-294-41/+35
* GH-100485: Add extended accuracy test. Switch to faster fma() based variant...Raymond Hettinger2023-01-281-36/+17
* gh-77532: Minor tweaks to allow compiling with PlatformToolset=ClangCL on Win...Steve Dower2023-01-271-0/+6
* Speed-up and improve accuracy with Rump Algorithms (3.1) and (5.10) (GH-101366)Raymond Hettinger2023-01-271-21/+16
* gh-99952: [ctypes] fix refcount issues in from_param() result. (#100169)Yukihiro Nakadaira2023-01-262-0/+9
* gh-94518: Rename `group*` to `extra_group*` to avoid confusion (#101054)Oleg Iarygin2023-01-261-28/+28
* gh-101326: Fix regression when passing None to FutureIter.throw (#101327)Shantanu2023-01-251-1/+6
* gh-92123: Adapt _elementtree to multi-phase init (PEP 489) (#101285)Erlend E. Aasland2023-01-242-130/+278
* GH-92123: Pass _elementtree state as parameter (#101189)Erlend E. Aasland2023-01-241-57/+73
* gh-101152: Implement PEP 699 (GH-101193)ram vikram singh2023-01-241-0/+3
* gh-100795: Don't call freeaddrinfo on failure. (#101252)Gregory P. Smith2023-01-231-0/+4
* GH-92123: Store _elementtree state in type contexts (#101190)Erlend E. Aasland2023-01-231-17/+21
* gh-83122: Deprecate testing element truth values in `ElementTree` (#31149)Jacob Walls2023-01-231-0/+18
* Sumprod(): Update citation. Reorder functions. Add final twosum() call. Impro...Raymond Hettinger2023-01-221-38/+21
* Revert "gh-100795: avoid unexpected `freeaddrinfo` after failed `getaddrinfo`...Kumar Aditya2023-01-221-2/+0
* gh-100795: avoid unexpected `freeaddrinfo` after failed `getaddrinfo` (#101220)Sergey G. Brester2023-01-221-0/+2
* gh-99266: ctypes: Preserve more detailed exception in `ArgumentError`Kamil Turek2023-01-211-3/+17
* GH-92123: Move _elementtree heap types to module state (#101187)Erlend E. Aasland2023-01-212-64/+98
* gh-92123: Convert `_elementtree` types to heap types (#99221)Erlend E. Aasland2023-01-202-236/+164
* GH-90699: Clear interned strings in `_elementtree` (#101185)Erlend E. Aasland2023-01-201-0/+10
* gh-59956: Clarify GILState-related Code (gh-101161)Eric Snow2023-01-192-13/+2
* gh-82052: Don't send partial UTF-8 sequences to the Windows API (GH-101103)Paul Moore2023-01-171-1/+16
* gh-100320: Fix path calculations on Windows when python.exe is moved outside ...Steve Dower2023-01-161-18/+30
* GH-100997: fix refleak in `_testinternalcapi.c` (#101058)Kumar Aditya2023-01-161-0/+1
* Fix `ctypes` typo in `set_exception` (#101040)Cristián Maureira-Fredes2023-01-151-1/+1
* GH-100892: consolidate `HEAD_LOCK/HEAD_UNLOCK` macros (#100953)Kumar Aditya2023-01-151-5/+0
* gh-94518: [_posixsubprocess] Replace variable validity flags with reserved va...Oleg Iarygin2023-01-141-33/+30
* GH-100997: Implement Multi-Phase Init for the _testinternalcapi Module (gh-10...Eric Snow2023-01-121-30/+117
* GH-100892: Fix race in clearing `threading.local` (#100922)Kumar Aditya2023-01-112-15/+56