summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* gh-92019: Make sqlite3.Blob indexing conform with the norm (#92020)Erlend Egeberg Aasland2022-04-301-18/+44
* gh-91583: AC: Fix regression for functions with defining_class (GH-91739)Serhiy Storchaka2022-04-3017-432/+782
* gh-91324: List feature macros in the stable ABI manifest, improve tests (GH-3...Petr Viktorin2022-04-282-0/+62
* gh-91498: socket: Add TCP_CONNECTION_INFO on macOS (#69256)David CARLIER2022-04-271-0/+3
* gh-91870: Remove unsupported SRE opcode CALL (GH-91872)Serhiy Storchaka2022-04-263-40/+37
* gh-91401: Add a failsafe way to disable vfork. (#91490)Gregory P. Smith2022-04-251-3/+4
* gh-64783: Fix signal.NSIG value on FreeBSD (#91929)Victor Stinner2022-04-253-35/+27
* gh-89653: PEP 670: Functions don't cast pointers (#91697)Victor Stinner2022-04-251-4/+6
* gh-91217: deprecate spwd (#91846)Brett Cannon2022-04-231-0/+7
* gh-91291: Accept attributes as keyword arguments in decimal.localcontext (#32...Sam Ezeh2022-04-222-57/+95
* gh-69093: Add indexing and slicing support to sqlite3.Blob (#91599)Erlend Egeberg Aasland2022-04-221-5/+202
* 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