summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* [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
* [3.11] gh-79579: Improve DML query detection in sqlite3 (GH-93623) (#93800)Erlend Egeberg Aasland2022-06-141-74/+45
* gh-92930: _pickle.c: Acquire strong references before calling save() (GH-92931)Miss Islington (bot)2022-06-111-11/+36
* bpo-42658: Allow _winapi.LCMapStringEx to handle embedded nulls (GH-93688)Steve Dower2022-06-101-4/+10
* [3.11] gh-90763: Modernise xx template module initialisation (GH-93078) (#93681)Erlend Egeberg Aasland2022-06-102-43/+54
* bpo-42658: Use LCMapStringEx in ntpath.normcase to match OS behaviour for cas...Steve Dower2022-06-102-1/+112
* gh-92434: Silence compiler warning in Modules/_sqlite/connection.c on 32-bit ...Miss Islington (bot)2022-06-101-1/+1
* gh-93421: Update sqlite3 cursor.rowcount only after SQLITE_DONE (GH-93526)Miss Islington (bot)2022-06-081-8/+11
* gh-90473: Make chmod a dummy on WASI, skip chmod tests (GH-93534) (GH-93550)Miss Islington (bot)2022-06-061-0/+4
* gh-69093: Fix Setup.local.in rule for _sqlite3 (GH-93380)Miss Islington (bot)2022-05-311-1/+1
* gh-92839: fixed typo in _bisectmodule.c (line 131) (GH-92849)Miss Islington (bot)2022-05-281-2/+2
* [3.11] bpo-40514: Drop EXPERIMENTAL_ISOLATED_SUBINTERPRETERS (gh-93185) (GH-9...Eric Snow2022-05-282-23/+0
* gh-92728: Restore re.template, but deprecate it (GH-93161)Miss Islington (bot)2022-05-252-0/+2
* [3.11] gh-93044: No longer convert the database argument of sqlite3.connect()...Serhiy Storchaka2022-05-212-7/+4
* gh-91922: Fix sqlite connection on nonstardard locales and paths (GH-92926)Miss Islington (bot)2022-05-202-53/+20
* gh-92913: Clarify changes to PyInitConfig.module_search_paths[_set] fields (G...Miss Islington (bot)2022-05-191-2/+3
* gh-90473: Decrease recursion limit and skip tests on WASI (GH-92803)Miss Islington (bot)2022-05-191-1/+1
* Fix NULL check in test_type_from_ephemeral_spec in_testcapimodule.c (GH-92863)Miss Islington (bot)2022-05-171-1/+1
* 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
* GH-92236: Remove spurious "line" event when starting coroutine or generator. ...Miss Islington (bot)2022-05-131-0/+46
* gh-92356: Fix regression in ctypes function call overhead (#92357)Michael Droettboom2022-05-061-0/+1
* gh-80010: Expand fromisoformat to include most of ISO-8601 (#92177)Paul Ganssle2022-05-061-71/+288
* gh-57684: Add -P cmdline option and PYTHONSAFEPATH env var (#31542)Victor Stinner2022-05-052-1/+2
* gh-82616: Add process_group support to subprocess.Popen (#23930)Gregory P. Smith2022-05-051-7/+13
* gh-92345: Import rlcompleter before sys.path is extended (#92346)Christian Heimes2022-05-051-1/+10
* gh-92301: subprocess: Prefer close_range() to procfs-based fd closing (#92303)Alexey Izbyshev2022-05-051-18/+70
* bpo-41818: Add os.login_tty() for *nix. (#29658)Soumendra Ganguly2022-05-052-10/+100
* GH-92239: Make sure that PEP 523 is supported, even when specializing first. ...Mark Shannon2022-05-041-1/+36
* gh-92210: Move socket.__init__ to argument clinic (#92237)Joshua Herman2022-05-042-14/+91
* gh-89022: Improve sqlite3 exceptions related to binding params and API misuse...Erlend Egeberg Aasland2022-05-042-15/+19
* Use static inline function Py_EnterRecursiveCall() (#91988)Victor Stinner2022-05-043-25/+28
* gh-92036: Fix gc_fini_untrack() (#92037)Victor Stinner2022-05-041-0/+6
* gh-80254: Disallow recursive usage of cursors in `sqlite3` converters (#29054)Erlend Egeberg Aasland2022-05-031-7/+24
* gh-91928: Add `datetime.UTC` alias for `datetime.timezone.utc` (GH-91973)Kabir Kwatra2022-05-031-0/+4
* gh-92206: Improve scoping of sqlite3 statement helper (#92260)Erlend Egeberg Aasland2022-05-033-9/+8