summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* bpo-40170: PyType_SUPPORTS_WEAKREFS() becomes a regular function (GH-30938)Victor Stinner2022-01-272-3/+3
* bpo-43853: Expand test suite for SQLite UDF's (GH-27642)Erlend Egeberg Aasland2022-01-262-3/+14
* bpo-46513: Remove AC_C_CHAR_UNSIGNED / __CHAR_UNSIGNED__ (GH-30851)Christian Heimes2022-01-261-7/+0
* bpo-29882: Fix portability bug introduced in GH-30774 (#30794)Mark Dickinson2022-01-231-0/+1
* bpo-46417: Clear _io module static objects at exit (GH-30807)Victor Stinner2022-01-221-44/+93
* bpo-46469: Make asyncio generic classes return GenericAlias (GH-30777)Kumar Aditya2022-01-221-16/+2
* bpo-46249: Move set lastrowid out of the sqlite3 query loop (GH-30489)Erlend Egeberg Aasland2022-01-221-11/+11
* bpo-46417: Add _PyType_GetSubclasses() function (GH-30761)Victor Stinner2022-01-211-9/+9
* bpo-30512: Add CAN Socket support for NetBSD (GH-30066)Thomas Klausner2022-01-212-3/+7
* bpo-46417: signal uses PyStructSequence_NewType() (GH-30735)Victor Stinner2022-01-211-7/+9
* bpo-46417: _curses uses PyStructSequence_NewType() (GH-30736)Victor Stinner2022-01-211-12/+10
* bpo-46417: time module uses PyStructSequence_NewType() (GH-30734)Victor Stinner2022-01-211-37/+81
* bpo-46417: _thread uses PyStructSequence_NewType() (GH-30733)Victor Stinner2022-01-211-12/+14
* bpo-41857: mention timeout argument units in select.poll() and select.depoll(...Zane Bitter2022-01-202-3/+15
* bpo-46028: Calculate base_executable by resolving symlinks in a venv (GH-30144)Steve Dower2022-01-181-1/+12
* bpo-46361: Fix "small" `int` caching (GH-30583)Brandt Bucher2022-01-161-0/+7
* 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