summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* gh-90623: signal.raise_signal() calls PyErr_CheckSignals() (#91756)Victor Stinner2022-04-212-1/+17
* gh-91731: Replace Py_BUILD_ASSERT() with static_assert() (#91730)Victor Stinner2022-04-205-10/+17
* gh-91734: Fix ossaudio support on Solaris (GH-91735)Jakub KulĂ­k2022-04-201-0/+4
* bpo-46712: share more global strings in deepfreeze (gh-32152)Kumar Aditya2022-04-192-1/+2
* gh-91616: re module, fix .fullmatch() mismatch when using Atomic Grouping or ...Ma Lin2022-04-191-7/+7
* gh-90699: Use module state to access insert str object. (GH-91693)Dong-hee Na2022-04-191-3/+49
* gh-91526: io: Remove device encoding support from TextIOWrapper (GH-91529)Inada Naoki2022-04-191-50/+6
* bpo-47256: Increasing the depth of backtracking in RE (GH-32411)Ma Lin2022-04-182-44/+44
* bpo-46053: Fix OSS audio support on NetBSD (GH-30065)Thomas Klausner2022-04-181-0/+78
* gh-91118: Fix docstrings that do not honor --without-doc-strings (#31769)Oleg Iarygin2022-04-185-47/+47
* gh-91217: deprecate ossaudiodev (GH-91641)Brett Cannon2022-04-171-0/+7
* gh-91217: deprecate nis (GH-91606)Brett Cannon2022-04-161-0/+6
* bpo-40676: Use Argument Clinic for csv (where possible) (GH-20200)Shantanu2022-04-162-37/+197
* gh-69093: Add context manager support to sqlite3.Blob (GH-91562)Erlend Egeberg Aasland2022-04-162-1/+95
* gh-90501: Add PyErr_GetHandledException and PyErr_SetHandledException (GH-30531)Irit Katriel2022-04-151-0/+11
* gh-69093: improve sqlite3.Connection.blobopen() error handling (GH-91571)Erlend Egeberg Aasland2022-04-151-1/+5
* gh-91404: Use computed gotos and reduce indirection in re (#91495)Brandt Bucher2022-04-152-343/+452
* gh-69093: Don't allow instantiation of sqlite3.Blob objects (GH-91570)Erlend Egeberg Aasland2022-04-151-1/+1
* gh-69093: Expose sqlite3.Blob as a class (GH-91550)Jelle Zijlstra2022-04-151-0/+1
* Remove usage of _Py_IDENTIFIER from unicodedata module. (GH-91532)Dong-hee Na2022-04-151-14/+8
* gh-69093: Support basic incremental I/O to blobs in `sqlite3` (GH-30680)Erlend Egeberg Aasland2022-04-158-6/+739
* gh-91353: Fix void return type handling in ctypes (GH-32246)Hood Chatham2022-04-142-2/+7
* gh-91156: Fix `encoding="locale"` in UTF-8 mode (GH-70056)Inada Naoki2022-04-144-15/+23
* gh-90699: Remove usage of _Py_IDENTIFIER from bisect module. (GH-91522)Dong-hee Na2022-04-141-5/+2
* bpo-47152: Automatically regenerate sre_constants.h (GH-91439)Serhiy Storchaka2022-04-121-2/+2
* gh-79097: Add support for aggregate window functions in sqlite3 (GH-20903)Erlend Egeberg Aasland2022-04-124-8/+230
* bpo-45995: add "z" format specifer to coerce negative 0 to zero (GH-30049)John Belmonte2022-04-111-7/+119
* bpo-47000: Add `locale.getencoding()` (GH-32068)Inada Naoki2022-04-093-13/+19
* Add new PyFrame_GetLasti C-API function (GH-32413)Mark Shannon2022-04-081-0/+16
* bpo-47177: Replace `f_lasti` with `prev_instr` (GH-32208)Brandt Bucher2022-04-071-1/+1
* Deprecate audioop (GH-32392)Brett Cannon2022-04-071-0/+7
* Remove micro-optimization that no longer shows a benefit. (GH-32397)Raymond Hettinger2022-04-071-21/+1
* Change parameter name from *x* for reals to *n* for integers. (GH-32377)Raymond Hettinger2022-04-062-6/+6
* bpo-26579: Add object.__getstate__(). (GH-2821)Serhiy Storchaka2022-04-062-35/+10
* bpo-47211: Remove function re.template() and flag re.TEMPLATE (GH-32300)Serhiy Storchaka2022-04-062-2/+0
* bpo-41930: Add support for SQLite serialise/deserialise API (GH-26728)Erlend Egeberg Aasland2022-04-052-1/+280
* bpo-46890: Fix setting of sys._base_executable with framework builds on macOS...Ronald Oussoren2022-04-052-2/+19
* bpo-47208: Allow vendors to override CTYPES_MAX_ARGCOUNT (GH-32297)Christian Heimes2022-04-042-1/+4
* bpo-47152: Move sources of the _sre module into a subdirectory (GH-32290)Serhiy Storchaka2022-04-046-5/+5
* bpo-47000: Make `io.text_encoding()` respects UTF-8 mode (GH-32003)Inada Naoki2022-04-042-7/+16
* bpo-47176: Interrupt handling for wasm32-emscripten builds without pthreads (...Hood Chatham2022-04-031-0/+2
* bpo-23689: re module, fix memory leak when a match is terminated by a signal ...Ma Lin2022-04-035-46/+83
* bpo-47196: Fix one more PyInit function signature (GH-32280)Hood Chatham2022-04-031-1/+1
* bpo-47152: Convert the re module into a package (GH-32177)Serhiy Storchaka2022-04-021-2/+2
* bpo-47196: Fix function pointer cast in test_imp (GH-32244)Hood Chatham2022-04-021-24/+24
* bpo-46023: makesetup: skip all duplicate modules (GH-32234)Christian Heimes2022-04-011-6/+12
* bpo-47167: Allow overriding a future compliance check in asyncio.Task (GH-32197)Andrew Svetlov2022-04-012-8/+102
* bpo-47151: Fallback to fork when vfork fails in subprocess. (GH-32186)Gregory P. Smith2022-03-311-0/+6
* bpo-40421: Add missing getters for frame object attributes to C-API. (GH-32114)Mark Shannon2022-03-311-0/+44
* bpo-45847: Port _tkinter to PY_STDLIB_MOD (GH-31698)Erlend Egeberg Aasland2022-03-311-3/+2