summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* gh-101819: Remove _PyWindowsConsoleIO_Type from the Windows DLL (GH-101904)Erlend E. Aasland2023-02-152-7/+1
* gh-101819: Remove _testcapi dependencies on specific _io symbols (#101918)Erlend E. Aasland2023-02-152-12/+8
* gh-101693: In sqlite3, deprecate using named placeholders with parameters sup...Erlend E. Aasland2023-02-151-0/+13
* gh-99108: Build the hashlib HACL* code as a static library. (#101917)Gregory P. Smith2023-02-142-2/+3
* gh-101758: Add a Test For Single-Phase Init Module Variants (gh-101891)Eric Snow2023-02-141-28/+366
* gh-99108: Import SHA2-384/512 from HACL* (#101707)Jonathan Protzenko2023-02-1412-431/+1250
* gh-101857: Allow xattr detection on musl libc (#101858)Sam James2023-02-141-1/+2
* gh-74895: getaddrinfo no longer raises OverflowError (#2435)Radek Smejkal2023-02-142-6/+14
* GH-101797: allocate `PyExpat_CAPI` capsule on heap (#101798)Kumar Aditya2023-02-111-27/+45
* gh-101277: Finalise isolating itertools (GH-101305)Erlend E. Aasland2023-02-102-322/+218
* gh-101430: Update tracemalloc to handle presize properly. (gh-101745)Dong-hee Na2023-02-091-16/+8
* GH-101228: Fix typo in docstring for read method of `_io.TextIOWrapper` class...Partha P. Mukherjee2023-02-091-3/+3
* gh-101678: Merge math_1_to_whatever() and math_1() (#101730)Sergey B Kirpichev2023-02-091-10/+2
* gh-101678: refactor the math module to use special functions from c11 (GH-101...Sergey B Kirpichev2023-02-092-184/+8
* gh-101277: Port more itertools static types to heap types (#101304)Erlend E. Aasland2023-02-082-327/+200
* 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