summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* gh-120346: Respect PYTHON_BASIC_REPL when running in interactive inspect mode...Pablo Galindo Salgado2024-06-111-1/+2
* gh-120057: Add os.environ.refresh() method (#120059)Victor Stinner2024-06-102-1/+34
* gh-120155: Fix Coverity issue in zoneinfo load_data() (#120232)Victor Stinner2024-06-101-1/+1
* gh-120296: Fix format string of fcntl.ioctl() audit (#120301)Clinton2024-06-101-1/+1
* gh-120244: Fix re.sub() reference leak (GH-120245)neonene2024-06-081-0/+1
* gh-119258: Eliminate Type Guards in Tier 2 Optimizer with Watcher (GH-119365)Saul Shanabrook2024-06-082-17/+19
* gh-119577: Adjust DeprecationWarning when testing element truth values in Ele...Jacob Walls2024-06-071-1/+1
* gh-117657: Fix TSAN race involving import lock (#118523)Sam Gross2024-06-062-9/+27
* gh-120155: Initialize variables in _tkinter.c (#120156)Victor Stinner2024-06-061-2/+7
* gh-115225: Raise error on unsupported ISO 8601 time strings (#119339)benchatt2024-06-051-0/+3
* gh-119842: Honor PyOS_InputHook in the new REPL (GH-119843)Pablo Galindo Salgado2024-06-042-1/+70
* gh-112672: Fix builtin Tkinter with Tcl 9.0 (GH-112681)Christopher Chavez2024-06-041-14/+24
* gh-89928: Fix integer conversion of device numbers (GH-31794)Serhiy Storchaka2024-06-042-37/+83
* gh-120029: export `DEF_TYPE_PARAM` compiler flag (#120028)Bénédikt Tran2024-06-041-1/+3
* gh-117398: Use Per-Interpreter State for the _datetime Static Types (gh-119929)Eric Snow2024-06-031-55/+142
* gh-117142: Support Importing ctypes in Isolated Interpreters (gh-119991)Eric Snow2024-06-031-1/+1
* gh-117398: Add datetime Module State (gh-119810)Eric Snow2024-06-031-162/+370
* gh-117657: Fix race involving immortalizing objects (#119927)Sam Gross2024-06-031-15/+9
* gh-116560: Add PyLong_GetSign() public function (#116561)Sergey B Kirpichev2024-06-031-0/+14
* gh-119506: fix `_io.TextIOWrapper.write()` write during flush (#119507)Radislav Chugunov2024-06-031-9/+22
* gh-119770: Make termios ioctl() constants positive (#119840)Victor Stinner2024-05-311-3/+15
* gh-119585: Fix crash involving `PyGILState_Release()` and `PyThreadState_Clea...Sam Gross2024-05-311-0/+9
* gh-103194: Fix Tkinter’s Tcl value type handling for Tcl 8.7/9.0 (GH-103846)Christopher Chavez2024-05-311-18/+32
* gh-119744: move a few functions from compile.c to flowgraph.c (#119745)Irit Katriel2024-05-301-0/+1
* gh-119690: Adds Unicode support for named pipes in _winapi (GH-119717)Steve Dower2024-05-292-28/+33
* gh-119655: Fix reference leak in the ``_datetimemodule.c`` (gh-119713)Kirill Podoprigora2024-05-291-2/+5
* gh-97588: Align ctypes struct layout to GCC/MSVC (GH-97702)Matthias Görgens2024-05-295-132/+2229
* gh-119661: Add _Py_SINGLETON() include in Argumenet Clinic (#119712)Victor Stinner2024-05-2911-16/+34
* gh-119613: Use C99+ functions instead of Py_IS_NAN/INFINITY/FINITE (#119619)Sergey B Kirpichev2024-05-294-110/+108
* gh-117398: Convert datetime.IsoCalendarDate To A Heap Type (gh-119637)Eric Snow2024-05-281-22/+60
* gh-117398: gh-119655: datetime: Init static state once & don't free it (GH-11...Petr Viktorin2024-05-281-5/+13
* gh-117557: Improve error messages when a string, bytes or bytearray of length...Serhiy Storchaka2024-05-287-82/+369
* gh-117398: Add multiphase support to _datetime (gh-119373)Erlend E. Aasland2024-05-271-15/+11
* gh-119584: Fix test_import Failed Assertion (gh-119623)Eric Snow2024-05-271-0/+3
* gh-119560: Drop an Invalid Assert in PyState_FindModule() (gh-119561)Eric Snow2024-05-251-2/+89
* gh-118263: Add additional arguments to path_t (Argument Clinic type) in posix...Nice Zombies2024-05-242-285/+362
* gh-69214: Fix fcntl.ioctl() request type (#119498)Victor Stinner2024-05-242-8/+9
* gh-119461: Fix ThreadedVSOCKSocketStreamTest (#119465)Victor Stinner2024-05-231-0/+1
* gh-117398: Statically Allocate the Datetime C-API (GH-119472)Eric Snow2024-05-231-35/+83
* gh-117142: Slightly hacky fix for memory leak of StgInfo (GH-119424)Petr Viktorin2024-05-232-53/+45
* gh-117142: ctypes: Clean up c-analyzer .tsv files (GH-117544)neonene2024-05-221-6/+0
* Remove almost all unpaired backticks in docstrings (#119231)Geoffrey Thomas2024-05-226-12/+12
* gh-119213: Be More Careful About _PyArg_Parser.kwtuple Across Interpreters (g...Eric Snow2024-05-222-1/+81
* gh-118692: Avoid creating unnecessary StopIteration instances for monitoring ...Irit Katriel2024-05-211-4/+5
* gh-118507 : Refactor `nt._path_is*` to improve applicability for other cases ...Nice Zombies2024-05-212-341/+414
* gh-117657: Fix itertools.count thread safety (#119268)Arnon Yaari2024-05-211-9/+31
* gh-118928: sqlite3: correctly bail if sequences of params are used with named...Erlend E. Aasland2024-05-201-0/+1
* gh-119049: Fix incorrect display of warning which is constructed by C API (GH...Kirill Podoprigora2024-05-161-0/+10
* gh-118486: Simplify test_win32_mkdir_700 to check the exact ACL (GH-119056)Steve Dower2024-05-151-1/+1
* gh-118928: sqlite3: disallow sequences of params with named placeholders (#11...Erlend E. Aasland2024-05-141-6/+2