summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
...
* bpo-46258: Streamline isqrt fast path (#30333)Mark Dickinson2022-01-151-14/+43
* bpo-46383: Fix signature of zoneinfo module_free function (GH-30607)Christian Heimes2022-01-151-1/+1
* bpo-46280: Fix tracemalloc_copy_domain() (GH-30591)Victor Stinner2022-01-141-0/+3
* bpo-45953: Statically initialize all the non-object PyInterpreterState fields...Eric Snow2022-01-141-15/+11
* bpo-46362: Ensure ntpath.abspath() uses the Windows API correctly (GH-30571)neonene2022-01-132-5/+46
* bpo-40479: Fix typo, flag must be set for OpenSSL < 3.0.0 (GH-30584)Christian Heimes2022-01-131-1/+1
* bpo-46070: _PyGC_Fini() untracks objects (GH-30577)Victor Stinner2022-01-131-0/+24
* bpo-40479: Fix hashlib's usedforsecurity for OpenSSL 3.0.0 (GH-30455)Christian Heimes2022-01-131-232/+338
* bpo-46315: Add ifdef HAVE_ feature checks for WASI compatibility (GH-30507)Christian Heimes2022-01-135-3/+26
* bpo-45953: Statically allocate the main interpreter (and initial thread state...Eric Snow2022-01-121-1/+1
* bpo-40280: Allow to compile _testcapi as builtin module (GH-30559)Christian Heimes2022-01-122-2/+3
* bpo-40280: Add --with-emscripten-target to build for browser or node (GH-30552)Christian Heimes2022-01-121-1/+1
* bpo-46303: Fix fileutils.h compiler warnings (GH-30550)Victor Stinner2022-01-111-0/+6
* bpo-46303: Move fileutils.h private functions to internal C API (GH-30484)Victor Stinner2022-01-117-96/+117
* bpo-37295: Use constant-time comb() and perm() for larger n depending on k (G...Serhiy Storchaka2022-01-091-130/+186
* bpo-46297: Fix interpreter crash on startup with multiple PythonPaths set in ...Daniel2022-01-071-12/+5
* bpo-46070: Fix asyncio initialisation guard (GH-30423)Erlend Egeberg Aasland2022-01-071-6/+4
* bpo-44092: Remove unused member `reset` from `sqlite3.Cursor` (GH-30377)Erlend Egeberg Aasland2022-01-032-20/+0
* bpo-44092: Don't reset statements/cursors before rollback (GH-26026)Erlend Egeberg Aasland2022-01-031-24/+0
* bpo-46222: posixmodule sendfile FreeBSD's constants updates. (GH-30327)David CARLIER2022-01-031-0/+4
* bpo-45615: Add missing test for printing traceback for non-exception. Fix tra...Irit Katriel2022-01-021-6/+6
* bpo-37295: More direct computation of power-of-two factor in math.comb (GH-30...Mark Dickinson2021-12-311-7/+25
* bpo-45321: Add missing error codes to module `xml.parsers.expat.errors` (GH-3...Sebastian Pipping2021-12-311-49/+91
* bpo-46176: mmap module adding MAP_STACK constant. (GH-30252)David CARLIER2021-12-291-0/+5
* bpo-37295: Speed up math.comb(n, k) for 0 <= k <= n <= 67 (GH-30275)Mark Dickinson2021-12-281-0/+89
* bpo-40915: Avoid compiler warnings by fixing mmapmodule conversion from LARGE...neonene2021-12-181-1/+2
* bpo-45711: Remove type and traceback from exc_info (GH-30122)Irit Katriel2021-12-171-8/+2
* bpo-46072: Add --with-pystats configure option to simplify gathering of VM st...Mark Shannon2021-12-151-1/+1
* bpo-46023: Skip build if module is marked as DISABLED (GH-30100)Christian Heimes2021-12-142-1/+5
* bpo-45643: Add signal.SIGSTKFLT on platforms where this is defined (GH-29266)Gareth Rees2021-12-131-0/+3
* bpo-45855: Replaced deprecated `PyImport_ImportModuleNoBlock` with PyImport_I...Kumar Aditya2021-12-126-11/+11
* bpo-46049: Fixes ._pth support on non-Windows (GH-30051)Steve Dower2021-12-112-19/+17
* bpo-46048: Fix parsing of single character lines in getpath readlines() (GH-3...Steve Dower2021-12-111-3/+3
* bpo-45582: Fix test_embed failure during a PGO build on Windows (GH-30014)neonene2021-12-101-1/+1
* bpo-46023: Fix makesetup handling of disabled rule (GH-30001)Christian Heimes2021-12-101-0/+3
* bpo-46000: Improve NetBSD curses compatibility (GH-29947)Thomas Klausner2021-12-101-2/+2
* bpo-43931: Export Python version as API data (GH-25577)Gabriele N. Tornetta2021-12-101-0/+1
* bpo-46018: Ensure that math.expm1 does not raise on underflow (GH-29997)Steve Dower2021-12-091-2/+6
* bpo-46025: Fix a crash in the atexit module for auto-unregistering functions ...Pablo Galindo Salgado2021-12-091-1/+4
* bpo-46016: fcntl module add FreeBSD's F_DUP2FD_CLOEXEC flag support (GH-29993)David CARLIER2021-12-081-0/+8
* bpo-46015: Fixes calculation of sys.path in a venv on Windows (GH-29992)Steve Dower2021-12-082-9/+12
* bpo-45582: Write empty pybuilddir.txt on Windows to allow relocatable build d...Steve Dower2021-12-081-0/+4
* bpo-46008: Add _PyInterpreterState_Main(). (gh-29978)Eric Snow2021-12-081-2/+2
* bpo-46008: Stop calling _PyThreadState_Init() in new_threadstate(). (gh-29973)Eric Snow2021-12-081-2/+2
* bpo-46008: Move thread-related interpreter state into a sub-struct. (gh-29971)Eric Snow2021-12-071-4/+4
* bpo-45847: Revert Port _ctypes partly to PY_STDLIB_MOD (GH-29747) (GH-29969)Christian Heimes2021-12-071-1/+1
* bpo-45582: Fix framework path and bootstrap build (GH-29954)Christian Heimes2021-12-071-9/+12
* bpo-45947: Place dict and values pointer at fixed (negative) offset just befo...Mark Shannon2021-12-072-40/+41
* bpo-45582: Ensure PYTHONHOME still overrides detected build prefixes (GH-29948)Steve Dower2021-12-071-0/+2
* bpo-45582: framework build: modPath must not be const (GH-29944)Christian Heimes2021-12-061-1/+1