summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* gh-115886: Handle embedded null characters in shared memory name (GH-115887)Serhiy Storchaka2024-02-251-2/+13
* gh-67044: Always quote or escape \r and \n in csv.writer() (GH-115741)Serhiy Storchaka2024-02-231-0/+2
* gh-115714: Don't use CLOCK_PROCESS_CPUTIME_ID and times() on WASI (GH-115757)Petr Viktorin2024-02-221-5/+11
* gh-111225: Link extension modules against libpython on Android (#115780)Malcolm Smith2024-02-211-13/+1
* gh-110850: Cleanup PyTime API: PyTime_t are nanoseconds (#115753)Victor Stinner2024-02-213-32/+27
* gh-110850: Replace private _PyTime_MAX with public PyTime_MAX (#115751)Victor Stinner2024-02-211-1/+1
* gh-110850: Use public PyTime functions (#115746)Victor Stinner2024-02-209-52/+37
* gh-110850: Rename internal PyTime C API functions (#115734)Victor Stinner2024-02-206-19/+19
* gh-104061: Add socket.SO_BINDTOIFINDEX constant (GH-104062)Victor Westerhuis2024-02-201-0/+3
* Tier 2 cleanups and tweaks (#115534)Guido van Rossum2024-02-201-4/+4
* gh-110850: Cleanup pycore_time.h includes (#115724)Victor Stinner2024-02-2012-3/+13
* gh-115712: Support CSV dialects with delimiter=' ' and skipinitialspace=True ...Serhiy Storchaka2024-02-201-7/+29
* gh-110850: Replace _PyTime_t with PyTime_t (#115719)Victor Stinner2024-02-2015-112/+112
* gh-112175: Add `eval_breaker` to `PyThreadState` (#115194)Brett Simmers2024-02-201-7/+4
* gh-110850: Enhance PyTime C API tests (#115715)Victor Stinner2024-02-201-4/+9
* GH-112354: Initial implementation of warm up on exits and trace-stitching (GH...Mark Shannon2024-02-201-1/+3
* gh-95782: Fix io.BufferedReader.tell() etc. being able to return offsets < 0 ...6t8k2024-02-171-1/+10
* gh-115103: Implement delayed memory reclamation (QSBR) (#115180)Sam Gross2024-02-161-0/+1
* gh-114271: Make `thread._rlock` thread-safe in free-threaded builds (#115102)mpage2024-02-161-10/+22
* gh-112529: Make the GC scheduling thread-safe (#114880)Sam Gross2024-02-161-0/+10
* gh-114572: Fix locking in cert_store_stats and get_ca_certs (#114573)David Benjamin2024-02-161-5/+60
* gh-115498: Fix `SET_COUNT` error handling in `_xxinterpchannelsmodule` (#115499)Nikita Sobolev2024-02-151-1/+1
* gh-113743: Make the MRO cache thread-safe in free-threaded builds (#113930)Dino Viehland2024-02-151-11/+4
* gh-112433: Add optional _align_ attribute to ctypes.Structure (GH-113790)monkeyman1922024-02-151-1/+25
* gh-115432: Add critical section variant that handles a NULL object (#115433)Sam Gross2024-02-151-0/+9
* gh-112050: Make collections.deque thread-safe in free-threaded builds (#113830)mpage2024-02-152-61/+335
* gh-114570: Add PythonFinalizationError exception (#115352)Victor Stinner2024-02-144-6/+6
* gh-115399: Upgrade bundled libexpat to 2.6.0 (#115431)Seth Michael Larson2024-02-1411-262/+401
* gh-115243: Fix crash in deque.index() when the deque is concurrently modified...kcatss2024-02-141-1/+2
* gh-76785: Improved Subinterpreters Compatibility with 3.12 (gh-115424)Eric Snow2024-02-134-50/+74
* gh-115417: Remove accidentally left debugging print (#115418)Kirill Podoprigora2024-02-131-1/+0
* gh-89240: Enable multiprocessing on Windows to use large process pools (GH-10...Steve Dower2024-02-132-1/+1003
* gh-111140: Adds PyLong_AsNativeBytes and PyLong_FromNative[Unsigned]Bytes fun...Steve Dower2024-02-128-16/+71
* gh-114271: Make `PyInterpreterState.threads.count` thread-safe in free-thread...mpage2024-02-121-3/+3
* gh-110850: Add PyTime_t C API (GH-115215)Petr Viktorin2024-02-126-18/+111
* gh-87804: Fix the refleak in error handling of `_pystatvfs_fromstructstatfs` ...Nikita Sobolev2024-02-121-8/+9
* gh-115058: Add ``reset_rare_event_counters`` function in `_testinternalcapi` ...Kirill Podoprigora2024-02-121-0/+15
* gh-89039: Call subclass constructors in datetime.*.replace (GH-114780)Eugene Toder2024-02-121-15/+62
* gh-114563: C decimal falls back to pydecimal for unsupported format strings (...John Belmonte2024-02-121-122/+62
* gh-87804: Fix error handling and style in `_pystatvfs_fromstructstatfs` (#115...Nikita Sobolev2024-02-121-31/+33
* gh-49766: Make date-datetime comparison more symmetric and flexible (GH-114760)Serhiy Storchaka2024-02-111-26/+10
* gh-85984: Add _POSIX_VDISABLE from unistd.h to termios module. (#114985)Soumendra Ganguly2024-02-111-3/+4
* gh-114670: Fix `_testbuffer` module initialization (#114672)Nikita Sobolev2024-02-101-53/+74
* gh-114894: add array.array.clear() method (#114919)Mike Zimin2024-02-102-1/+35
* GH-87804: Fix counter overflow in statvfs on macOS (#99570)Ronald Oussoren2024-02-101-0/+101
* gh-110481: Implement inter-thread queue for biased reference counting (#114824)Sam Gross2024-02-091-0/+4
* gh-115059: Flush the underlying write buffer in io.BufferedRandom.read1() (GH...Serhiy Storchaka2024-02-091-0/+10
* gh-115136: Fix possible NULL deref in getpath_joinpath() (GH-115137)Artem Chernyshev2024-02-081-0/+4
* When the Py_CompileStringExFlags fuzzer encounters a SystemError, abort (#115...Alex Gaynor2024-02-071-2/+9
* gh-112066: Use `PyDict_SetDefaultRef` in place of `PyDict_SetDefault`. (#112211)Sam Gross2024-02-073-5/+5