summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* bpo-42208: Add _Py_GetLocaleEncoding() (GH-23050)Victor Stinner2020-10-313-48/+4
* bpo-42208: Call GC collect earlier in PyInterpreterState_Clear() (GH-23044)Victor Stinner2020-10-301-4/+6
* bpo-42208: Pass tstate to _PyGC_CollectNoFail() (GH-23038)Victor Stinner2020-10-301-25/+18
* bpo-42029: Remove IRIX code (GH-23023)Victor Stinner2020-10-292-9/+5
* bpo-42161: Micro-optimize _collections._count_elements() (GH-23008)Victor Stinner2020-10-271-4/+5
* bpo-42161: Modules/ uses _PyLong_GetZero() and _PyLong_GetOne() (GH-22998)Victor Stinner2020-10-2713-35/+53
* bpo-42157: Rename unicodedata.ucnhash_CAPI (GH-22994)Victor Stinner2020-10-271-2/+2
* bpo-42157: Convert unicodedata.UCD to heap type (GH-22991)Victor Stinner2020-10-262-84/+52
* bpo-42157: unicodedata avoids references to UCD_Type (GH-22990)Victor Stinner2020-10-261-105/+111
* bpo-1635741: _PyUnicode_Name_CAPI moves to internal C API (GH-22713)Victor Stinner2020-10-262-14/+16
* bpo-42152: Use PyDict_Contains and PyDict_SetDefault if appropriate. (GH-22986)Serhiy Storchaka2020-10-266-45/+33
* bpo-42006: Stop using PyDict_GetItem, PyDict_GetItemString and _PyDict_GetIte...Serhiy Storchaka2020-10-265-45/+60
* bpo-42146: Fix memory leak in subprocess.Popen() in case of uid/gid overflow ...Alexey Izbyshev2020-10-261-2/+2
* bpo-42144: Add a missing "goto error;" in the _ssl module (GH-22959)Zackery Spytz2020-10-251-0/+1
* bpo-35823: Allow setsid() after vfork() on Linux. (GH-22945)Gregory P. Smith2020-10-241-2/+3
* bpo-41052: Fix pickling heap types implemented in C with protocols 0 and 1 (G...Serhiy Storchaka2020-10-246-167/+3
* bpo-35823: subprocess: Fix handling of pthread_sigmask() errors (GH-22944)Alexey Izbyshev2020-10-241-4/+15
* bpo-35823: subprocess: Use vfork() instead of fork() on Linux when safe (GH-1...Alexey Izbyshev2020-10-241-27/+197
* bpo-1635741: Fix NULL ptr deref in multiprocessing (GH-22880)Christian Heimes2020-10-221-1/+0
* _testmultiphase: Fix possible ref leak (GH-22881)Dong-hee Na2020-10-221-0/+4
* Delete TaskWakeupMethWrapper_Type and use PyCFunction instead (#22875)Vladimir Matveev2020-10-221-94/+8
* bpo-38324: Fix test__locale.py Windows failures (GH-20529)TIGirardi2020-10-201-3/+22
* md5module: Fix doc strings variable names (GH-22722)Jakub Jelen2020-10-201-3/+3
* bpo-4356: Add key function support to the bisect module (GH-20556)Raymond Hettinger2020-10-202-45/+137
* bpo-41586: Add pipesize parameter to subprocess & F_GETPIPE_SZ and F_SETPIPE_...Ruben Vorderman2020-10-191-0/+8
* bpo-16396: Allow wintypes to be imported on non-Windows systems. (GH-21394)Jason R. Coombs2020-10-191-3/+6
* bpo-20184: Convert termios to Argument Clinic. (GH-22693)Serhiy Storchaka2020-10-182-99/+328
* bpo-41919, test_codecs: Move codecs.register calls to setUp() (GH-22513)Hai Shi2020-10-162-58/+1
* bpo-1635741: Add a global module state to unicodedata (GH-22712)Victor Stinner2020-10-151-54/+107
* bpo-42021: Fix possible ref leaks during _sqlite3 module init (GH-22673)Erlend Egeberg Aasland2020-10-153-129/+92
* bpo-41984: GC track all user classes (GH-22701)Brandt Bucher2020-10-151-0/+20
* bpo-40422: Move _Py_closerange to fileutils.c (GH-22680)Kyle Evans2020-10-134-79/+3
* bpo-41995: Fix null ptr deref in tracemalloc_copy_trace() (GH-22660)Yunlongs2020-10-131-1/+1
* bpo-40422: Move _Py_*_SUPPRESS_IPH bits into _Py_closerange (GH-22672)Kyle Evans2020-10-121-2/+2
* bpo-40423: Optimization: use close_range(2) if available (GH-22651)Kyle Evans2020-10-111-3/+14
* bpo-40422: create a common _Py_closerange API (GH-19754)Kyle Evans2020-10-113-37/+50
* bpo-41756: Add PyIter_Send function (#22443)Vladimir Matveev2020-10-102-9/+3
* bpo-41985: Add _PyLong_FileDescriptor_Converter and AC converter for "fildes"...Serhiy Storchaka2020-10-097-94/+35
* Revert "bpo-26680: Incorporate is_integer in all built-in and standard librar...Raymond Hettinger2020-10-072-14/+5
* bpo-41867: List options for timespec in docstrings of isoformat methods (GH-2...Ram Rachum2020-10-031-4/+8
* Update link to supporting references (GH-22488)Raymond Hettinger2020-10-021-1/+1
* bpo-26680: Incorporate is_integer in all built-in and standard library numeri...Robert Smallshire2020-10-012-5/+14
* bpo-41861: Convert _sqlite3 CursorType and ConnectionType to heap types (GH-2...Erlend Egeberg Aasland2020-10-016-102/+74
* bpo-41861: Convert _sqlite3 RowType and StatementType to heap types (GH-22444)Erlend Egeberg Aasland2020-10-019-118/+71
* bpo-41861: Convert _sqlite3 PrepareProtocolType to heap type (GH-22428)Erlend Egeberg Aasland2020-09-285-54/+33
* bpo-41842: Add codecs.unregister() function (GH-22360)Hai Shi2020-09-282-1/+34
* bpo-41861: Convert _sqlite3 cache and node static types to heap types (GH-22417)Erlend Egeberg Aasland2020-09-274-99/+48
* bpo-1635741: Port _bisect module to multi-phase init (GH-22415)Dong-hee Na2020-09-261-9/+5
* bpo-30155: Add macros to get tzinfo from datetime instances (GH-21633)Zackery Spytz2020-09-233-13/+8
* bpo-40170: Use inline _PyType_HasFeature() function (GH-22375)Victor Stinner2020-09-231-1/+2