summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* gh-98178: syslog() is not thread-safe on macOS (GH-98213)Miss Islington (bot)2022-10-131-0/+5
* [3.10] Add more syslog tests (GH-97953). (GH-98101)Serhiy Storchaka2022-10-091-1/+1
* [3.10] gh-96288: Add a sentence to `os.mkdir`'s docstring. (GH-96271). (#98066)Jelle Zijlstra2022-10-082-4/+6
* gh-65496: Correct wording on csv's skipinitialspace argument (GH-96170)Miss Islington (bot)2022-10-071-4/+4
* fixes gh-96078: os.sched_yield release the GIL while calling sched_yield(2). ...Miss Islington (bot)2022-10-071-1/+6
* [3.10] gh-97897: Prevent os.mkfifo and os.mknod segfaults with macOS 13 SDK (...Miss Islington (bot)2022-10-061-8/+52
* [3.10] gh-97728: Argument Clinic: Fix uninitialized variable in the Py_UNICOD...Serhiy Storchaka2022-10-033-12/+12
* GH-97592: Fix crash in C remove_done_callback due to evil code (GH-97660)Miss Islington (bot)2022-09-301-2/+7
* gh-97005: Update libexpat from 2.4.7 to 2.4.9 (gh-97006)Miss Islington (bot)2022-09-227-17/+27
* gh-96821: Fix undefined behaviour in `_testcapimodule.c` (GH-96915) (GH-96926)Miss Islington (bot)2022-09-191-1/+3
* gh-96652: Fix faulthandler chained signal without sigaction() (GH-96666)Miss Islington (bot)2022-09-081-1/+1
* gh-96641: Do not expose `KeyWrapper` in `_functoolsmodule.c` (gh-96642)Miss Islington (bot)2022-09-071-3/+2
* fixes gh-96292: Fix Trivial Typo in cpython/Modules/atexitmodule.c (GH-96327)Miss Islington (bot)2022-08-271-1/+1
* gh-95878: Fix format char in datetime CAPI tests (GH-95879)Miss Islington (bot)2022-08-111-4/+4
* gh-91838: Resolve HTTP links which redirect to HTTPS (GH-95642)Miss Islington (bot)2022-08-041-1/+1
* [3.10] bpo-46053: Fix OSS audio support on NetBSD (GH-30065). (GH-95477)Thomas Klausner2022-07-311-0/+78
* [3.10] GH-93899: fix checks for eventfd flags (GH-95170). (#95345)Kumar Aditya2022-07-282-10/+14
* GH-95045: gc untrack _lsprof.Profiler before deallocating it (GH-95315)Miss Islington (bot)2022-07-271-0/+1
* gh-95041: Fail syslog.syslog in case inner call to syslog.openlog fails (GH-9...Miss Islington (bot)2022-07-261-1/+7
* gh-95041: Fix several minor issues in syslog.openlog() (GH-95058)Miss Islington (bot)2022-07-261-24/+33
* gh-95095: Use SSL_CTX_get_max_proto_version instead of SSL_CTX_ctrl (GH-95096)Miss Islington (bot)2022-07-211-2/+2
* [3.10] gh-94930: skipitem() in getargs.c should return non-NULL on error (GH-...Miss Islington (bot)2022-07-191-2/+21
* GH-91153: Handle mutating __index__ methods in bytearray item assignment (GH-...Miss Islington (bot)2022-07-191-0/+16
* gh-94821: Fix autobind of empty unix domain address (GH-94826)Miss Islington (bot)2022-07-171-2/+4
* bpo-45924: Fix asyncio incorrect traceback when future's exception is raised ...Miss Islington (bot)2022-07-111-0/+14
* GH-94736: Fix _multiprocessing.SemLock subclassing (GH-94738)Miss Islington (bot)2022-07-111-4/+2
* gh-94637: Release GIL in SSLContext.set_default_verify_paths (GH-94658)Miss Islington (bot)2022-07-091-1/+5
* [3.10] gh-94321: Document sqlite3.PrepareProtocol (GH-94620) (#94671)Erlend Egeberg Aasland2022-07-071-0/+3
* GH-94644: fix test_curses ref leak (GH-94647)Miss Islington (bot)2022-07-071-0/+1
* [3.10] gh-94510: Raise on re-entrant calls to sys.setprofile and syssettrace ...Pablo Galindo Salgado2022-07-051-1/+1
* [3.10] GH-89988: Fix memory leak in pickle.Pickler dispatch_table lookup (GH-...Kumar Aditya2022-06-281-1/+5
* GH-94254: Make _struct module types immutable (GH-94269)Miss Islington (bot)2022-06-261-2/+4
* [3.10] gh-90016: Reword sqlite3 adapter/converter docs (GH-93095) (#94273)Erlend Egeberg Aasland2022-06-252-11/+11
* [3.10] gh-94207: Fix struct module leak (GH-94239) (GH-94266)Miss Islington (bot)2022-06-251-2/+20
* Fix typo in _io.TextIOWrapper Clinic input (GH-94037) (GH-94117)Miss Islington (bot)2022-06-221-2/+2
* gh-94101 Disallow instantiation of SSLSession objects (GH-94102)Miss Islington (bot)2022-06-221-1/+2
* DOC: correct bytesarray -> bytearray in comments (GH-92410) (GH-94090)Miss Islington (bot)2022-06-222-2/+2
* gh-84461: Silence some compiler warnings on WASM (GH-93978) (#94025)Victor Stinner2022-06-204-5/+9
* [3.10] gh-93925: Improve clarity of sqlite3 commit/rollback, and close docs (...Erlend Egeberg Aasland2022-06-192-10/+22
* [3.10] gh-79579: Improve DML query detection in sqlite3 (GH-93623) (#93801)Erlend Egeberg Aasland2022-06-141-75/+45
* gh-92930: _pickle.c: Acquire strong references before calling save() (GH-92931)Miss Islington (bot)2022-06-111-11/+36
* bpo-42658: Use LCMapStringEx in ntpath.normcase to match OS behaviour for cas...Steve Dower2022-06-102-1/+118
* gh-90763: Modernise xx template module initialisation (GH-93078)Miss Islington (bot)2022-06-102-43/+54
* [3.10] gh-93421: Update sqlite3 cursor.rowcount only after SQLITE_DONE (GH-93...Erlend Egeberg Aasland2022-06-081-9/+14
* gh-92839: fixed typo in _bisectmodule.c (line 131) (GH-92849) (#93321)Miss Islington (bot)2022-05-281-2/+2
* Fix NULL test in _testinternalcapi (GH-92861)Miss Islington (bot)2022-05-171-1/+1
* Check result of utc_to_seconds and skip fold probe in pure Python (GH-91582)Miss Islington (bot)2022-05-141-0/+4
* bpo-46785: Fix race condition between os.stat() and unlink on Windows (GH-31858)Itai Steinherz2022-05-101-1/+11
* [3.10] gh-80254: Disallow recursive usage of cursors in `sqlite3` converters ...Erlend Egeberg Aasland2022-05-051-14/+32
* gh-92036: Fix gc_fini_untrack() (GH-92037)Miss Islington (bot)2022-05-041-0/+6