summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* [3.8] bpo-38820: OpenSSL 3.0.0 compatibility. (GH-17190) (GH-17499)Miss Islington (bot)2019-12-071-1/+48
* Make repr of C accelerated TaskWakeupMethWrapper the same as of pure Python v...Miss Islington (bot)2019-12-071-1/+17
* bpo-37931: Fix crash on OSX re-initializing os.environ (GH-15428)Miss Islington (bot)2019-12-061-5/+5
* bpo-38965: Fix faulthandler._stack_overflow() on GCC 10 (GH-17467)Miss Islington (bot)2019-12-041-10/+6
* bpo-38634: Allow non-apple build to cope with libedit (GH-16986)Miss Islington (bot)2019-12-041-19/+4
* bpo-36854: Fix reference counter in PyInit__testcapi() (GH-17338)Victor Stinner2019-11-221-2/+5
* bpo-38823: Fix refleak in _tracemalloc init error handling (GH-17235)Miss Islington (bot)2019-11-201-1/+3
* bpo-38823: Fix refleaks in faulthandler init error path on Windows (GH-17250)Miss Islington (bot)2019-11-191-10/+21
* bpo-38622: Ensure ctypes.PyObj_FromPtr audit event passes tuples as a single ...Miss Islington (bot)2019-11-181-2/+2
* bpo-38622: Add missing audit events for ctypes module (GH-17158)Miss Islington (bot)2019-11-182-7/+65
* bpo-38823: Clean up refleaks in _tkinter initialization. (GH-17206)Miss Islington (bot)2019-11-181-0/+2
* bpo-16576: Add checks for bitfields passed by value to functions. (GH-17097) ...Miss Islington (bot)2019-11-182-3/+60
* bpo-38823: Clean up refleaks in _contextvars initialization. (GH-17198)Miss Islington (bot)2019-11-171-0/+3
* bpo-38823: Clean up refleaks in _asyncio initialization. (GH-17195)Miss Islington (bot)2019-11-161-0/+4
* bpo-38677: Fix arraymodule error handling in module initialization. (GH-17039)Miss Islington (bot)2019-11-151-8/+12
* bpo-38785: Prevent asyncio from crashing (GH-17144)Miss Islington (bot)2019-11-131-0/+1
* [3.8] closes bpo-27805: Ignore ESPIPE in initializing seek of append-mode fil...Benjamin Peterson2019-11-121-9/+15
* bpo-38684: haslib: fix build when Blake2 not enabled in OpenSSL (GH-17043)Miss Islington (bot)2019-11-061-1/+1
* [3.8] bpo-16575: Add checks for unions passed by value to functions. (GH-1679...Vinay Sajip2019-10-314-0/+98
* bpo-38418: Fixes audit event for os.system to be named 'os.system' (GH-16670)Miss Islington (bot)2019-10-181-2/+2
* [3.8] bpo-36389: Backport debug enhancements from master (GH-16796)Victor Stinner2019-10-152-5/+14
* bpo-37731: Reorder includes in xmltok.c to avoid redefinition of _POSIX_C_SOU...Miss Islington (bot)2019-10-121-8/+8
* [3.8] bpo-38379: don't claim objects are collected when they aren't (GH-166...Pablo Galindo2019-10-091-6/+4
* bpo-38368: Added fix for ctypes crash when handling arrays in structs/unions....Vinay Sajip2019-10-092-25/+179
* bpo-36356: Fix memory leak in _asynciomodule.c (GH-16598)Miss Islington (bot)2019-10-071-0/+7
* bpo-13153: Use OS native encoding for converting between Python and Tcl. (GH-...Miss Islington (bot)2019-10-041-173/+202
* [3.8] bpo-3832: Fix compiler warnings (GH-16518)Victor Stinner2019-10-012-2/+1
* bpo-38304: PyConfig_InitPythonConfig() cannot fail anymore (GH-16509)Miss Islington (bot)2019-10-011-5/+1
* bpo-38304: Remove PyConfig.struct_size (GH-16500)Victor Stinner2019-09-301-7/+2
* Clear weakrefs in garbage found by the GC (GH-16495) (#16499)Miss Islington (bot)2019-09-301-0/+17
* [3.8] bpo-38270: More fixes for strict crypto policy (GH-16418) (#16437)Christian Heimes2019-09-301-1/+1
* bpo-38304: Add PyConfig.struct_size (GH-16451) (GH-16453)Victor Stinner2019-09-281-1/+8
* [3.8] bpo-38234: Backport init path config changes from master (GH-16423)Victor Stinner2019-09-261-76/+119
* [3.8] closes bpo-38174: Update vendored expat library to 2.2.8. (GH-16409)Benjamin Peterson2019-09-2619-4835/+3972
* [3.8] bpo-22273: Changed conditions for ctypes array-in-struct handling. (GH-...Vinay Sajip2019-09-251-7/+4
* bpo-38248: Fix inconsistent immediate asyncio.Task cancellation (GH-16330) (G...Miss Islington (bot)2019-09-251-7/+8
* bpo-22273: Update ctypes to correctly handle arrays in small structur… (GH-...Miss Islington (bot)2019-09-252-0/+146
* bpo-38234: read_pth_file() now returns PyStatus (GH-16338)Miss Islington (bot)2019-09-231-79/+112
* bpo-38234: Fix _PyConfig_InitPathConfig() (GH-16335) (GH-16336)Victor Stinner2019-09-231-62/+78
* [3.8] bpo-38234: Fix PyConfig_Read() when Py_SetPath() was called (GH-16298) ...Victor Stinner2019-09-211-4/+6
* bpo-38185: Fixed case-insensitive string comparison in sqlite3.Row indexing. ...Miss Islington (bot)2019-09-171-31/+31
* bpo-38175: Fix a memory leak in comparison of sqlite3.Row objects. (GH-16155)Miss Islington (bot)2019-09-171-5/+7
* bpo-33936: Don't call obsolete init methods with OpenSSL 1.1.0+ (GH-16140)Miss Islington (bot)2019-09-161-1/+1
* bpo-38153: detect shake independently from sha3 (GH-16143)Miss Islington (bot)2019-09-161-2/+11
* [3.8] bpo-38153: Normalize hashlib algorithm names (GH-16083) (GH-16144)Christian Heimes2019-09-161-21/+146
* [3.8] bpo-38168: Fix a possbile refleak in setint() of mmapmodule.c (GH-16136...Miss Islington (bot)2019-09-161-1/+2
* bpo-37798: Prevent undefined behavior in direct calls to the C helper functio...Miss Islington (bot)2019-09-151-1/+17
* [3.8] bpo-38005: Fixed comparing and creating of InterpreterID and ChannelID....Serhiy Storchaka2019-09-141-85/+65
* [3.8] bpo-37206: Unrepresentable default values no longer represented as None...Serhiy Storchaka2019-09-1426-202/+200
* [3.8] bpo-38150: Fix refleak in the finalizer of a _testcapimodule type (GH-1...Stéphane Wirtel2019-09-131-5/+13