summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* 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
* [3.11] GH-96612: Skip incomplete frames in tracemalloc traces. (GH-96613) (#9...Mark Shannon2022-09-061-3/+8
* fixes gh-96292: Fix Trivial Typo in cpython/Modules/atexitmodule.c (GH-96327)Miss Islington (bot)2022-08-271-1/+1
* gh-95808: Add missing early returns in _asynciomodule.c (GH-95809)Miss Islington (bot)2022-08-161-2/+3
* gh-95878: Fix format char in datetime CAPI tests (GH-95879) (#95885)Miss Islington (bot)2022-08-111-4/+4
* [3.11] gh-92678: Correct return values for errors in PyInit__testcapi (#95664)Pablo Galindo Salgado2022-08-041-2/+2
* gh-91323: Revert "Allow overriding a future compliance check in asyncio.Task ...Miss Islington (bot)2022-08-042-102/+8
* gh-94936: C getters: co_varnames, co_cellvars, co_freevars (GH-95008)Miss Islington (bot)2022-08-041-11/+69
* gh-91838: Resolve HTTP links which redirect to HTTPS (GH-95642)Miss Islington (bot)2022-08-041-1/+1
* Revert "[3.11] GH-92678: Expose managed dict clear and visit functions (GH-95...Mark Shannon2022-08-041-9/+0
* GH-92678: Fix tp_dictoffset inheritance. (GH-95596) (GH-95604)Mark Shannon2022-08-041-0/+28
* [3.11] gh-95174: WASI: skip missing sockets functions (GH-95179) (GH-95308)Christian Heimes2022-07-314-10/+114
* [3.11] gh-95174: Handle missing dup() and constants in WASI (GH-95229) (GH-95...Christian Heimes2022-07-315-2/+26
* [3.11] GH-93899: fix checks for eventfd flags (GH-95170). (#95342)Kumar Aditya2022-07-282-10/+14
* [3.11] gh-95324: Emit a warning if an object doesn't call PyObject_GC_UnTrack...Miss Islington (bot)2022-07-275-0/+12
* 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-271-1/+7
* gh-95041: Fix several minor issues in syslog.openlog() (GH-95058) (GH-95261)Miss Islington (bot)2022-07-261-24/+33
* [3.11] GH-92678: Expose managed dict clear and visit functions (GH-95246). (#...Pablo Galindo Salgado2022-07-251-0/+9
* gh-90473: Check for HAVE_KILL in main.c:exit_sigint (GH-95165)Miss Islington (bot)2022-07-231-1/+1
* [3.11] gh-95132: Correctly relay *args and **kwds from sqlite3.connect to fac...Erlend Egeberg Aasland2022-07-233-147/+35
* gh-95095: Use SSL_CTX_get_max_proto_version instead of SSL_CTX_ctrl (GH-95096)Miss Islington (bot)2022-07-211-2/+2
* GH-90699: fix ref counting of static immortal strings (gh-94850)Miss Islington (bot)2022-07-201-1/+1
* GH-91153: Handle mutating __index__ methods in bytearray item assignment (GH-...Miss Islington (bot)2022-07-191-0/+16
* gh-94930: skipitem() in getargs.c should return non-NULL on error (GH-94931)Miss Islington (bot)2022-07-181-2/+21
* GH-94857: fix test_io refleak (GH-94858)Miss Islington (bot)2022-07-181-1/+6
* gh-94821: Fix autobind of empty unix domain address (GH-94826)Miss Islington (bot)2022-07-171-2/+4
* GH-89988: Fix memory leak in pickle.Pickler dispatch_table lookup (GH-94298)Miss Islington (bot)2022-07-141-1/+3
* [3.11] bpo-45924: Fix asyncio incorrect traceback when future's exception is ...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
* gh-94321: Document sqlite3.PrepareProtocol (GH-94620)Miss Islington (bot)2022-07-071-0/+3
* GH-94644: fix test_curses ref leak (GH-94647)Miss Islington (bot)2022-07-071-0/+1
* [3.11] gh-94510: Raise on re-entrant calls to sys.setprofile and sys.settrace...Ɓukasz Langa2022-07-051-1/+1
* [3.11] gh-94404: Use module CFLAGS before PY_STDMODULE_CFLAGS (GH-94413) (GH-...Christian Heimes2022-06-291-3/+4
* gh-94404: makesetup: use correct CFLAGS and macOS workaround (GH-94405)Miss Islington (bot)2022-06-291-5/+11
* GH-94254: Make _struct module types immutable (GH-94269)Miss Islington (bot)2022-06-261-2/+4
* [3.11] gh-90016: Reword sqlite3 adapter/converter docs (GH-93095) (#94272)Erlend Egeberg Aasland2022-06-252-11/+11
* gh-94207: Fix struct module leak (GH-94239) (GH-94265)Miss Islington (bot)2022-06-251-2/+20
* gh-84461: Fix ctypes and test_ctypes on Emscripten (GH-94142)Miss Islington (bot)2022-06-241-1/+5
* Fix typo in _io.TextIOWrapper Clinic input (GH-94037) (GH-94116)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-94089)Miss Islington (bot)2022-06-222-2/+2
* gh-94028: Clear and reset sqlite3 statements properly in cursor iternext (GH-...Miss Islington (bot)2022-06-211-0/+3
* gh-91985: Ensure in-tree builds override platstdlib_dir in every path calcula...Miss Islington (bot)2022-06-201-1/+2
* gh-93937, C API: Move PyFrame_GetBack() to Python.h (#93938) (#94000)Victor Stinner2022-06-205-6/+0
* gh-84461: Silence some compiler warnings on WASM (GH-93978)Miss Islington (bot)2022-06-204-5/+9
* gh-93925: Improve clarity of sqlite3 commit/rollback, and close docs (GH-93926)Miss Islington (bot)2022-06-192-10/+22
* gh-91404: Revert "bpo-23689: re module, fix memory leak when a match is termi...Miss Islington (bot)2022-06-175-81/+47