summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* 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
* [3.8] bpo-38137: Re-add OpenSSL 1.0.2 compat (GH-16051) (GH-16057)Stéphane Wirtel2019-09-121-0/+6
* bpo-21872: fix lzma library decompresses data incompletely (GH-14048)Miss Islington (bot)2019-09-121-6/+22
* bpo-38132: Check EVP_DigestUpdate for error (GH-16041)Miss Islington (bot)2019-09-121-6/+16
* bpo-38132: Simplify _hashopenssl code (GH-16023) (#16040)Miss Islington (bot)2019-09-122-122/+385
* bpo-38134: Remove PKBDF2_HMAC_fast from _hashopenssl (GH-16028)Miss Islington (bot)2019-09-122-123/+1
* bpo-38110: Use fdwalk for os.closerange() when available. (GH-15224)Miss Islington (bot)2019-09-121-0/+25
* closes bpo-37405: Make socket.getsockname() always return a tuple for AF_CAN....Miss Islington (bot)2019-09-121-1/+1
* closes bpo-38127: _ctypes: PyObject_IsSubclass() should be checked for failur...Miss Islington (bot)2019-09-121-1/+5
* [3.8] bpo-37879: Suppress subtype_dealloc decref when base type is a C heap t...Petr Viktorin2019-09-121-0/+221
* bpo-33166: Change os.cpu_count to return active (real) processors (GH-15949)Miss Islington (bot)2019-09-111-17/+3
* Fix calling order of PyEval_InitThreads. (GH-15836)Miss Islington (bot)2019-09-101-1/+1
* bpo-35941: Fix performance regression in SSL certificate code (GH-12610)Steve Dower2019-09-101-29/+27
* bpo-37649: Fix exec_prefix check (GH-14897)Miss Islington (bot)2019-09-091-1/+1
* bpo-38070: visit_decref() calls _PyObject_IsFreed() (GH-15782)Miss Islington (bot)2019-09-091-0/+2
* bpo-38037: Fix reference counters in signal module (GH-15753)Miss Islington (bot)2019-09-091-8/+17
* bpo-37702: Fix SSL's certificate-store leak on Windows (GH-15632)Steve Dower2019-09-091-0/+1
* bpo-37445: Include FORMAT_MESSAGE_IGNORE_INSERTS in FormatMessageW() calls (G...Miss Islington (bot)2019-09-092-2/+5
* bpo-34410: Fix a crash in the tee iterator when re-enter it. (GH-15625)Miss Islington (bot)2019-09-091-0/+9
* bpo-38030: Fix os.stat failures on block devices on Windows (GH-15681)Miss Islington (bot)2019-09-041-6/+13
* closes bpo-37966: Fully implement the UAX GH-15 quick-check algorithm. (GH-15...Miss Islington (bot)2019-09-041-24/+51
* bpo-38020: Fixes crash in os.readlink() on Windows (GH-15663)Miss Islington (bot)2019-09-031-2/+2
* bpo-37798: Fix _statistics module doc (GH-15546)Miss Islington (bot)2019-09-031-1/+4
* [3.8] bpo-37994: Fix silencing all errors if an attribute lookup fails. (GH-1...Serhiy Storchaka2019-09-015-22/+28
* [3.8] bpo-37990: fix gc stats (GH-15626)Inada Naoki2019-08-311-2/+3
* Fix typos mostly in comments, docs and test names (GH-15209)Miss Islington (bot)2019-08-308-11/+11
* bpo-37140: Fix StructUnionType_paramfunc() (GH-15612)Miss Islington (bot)2019-08-301-14/+59
* bpo-37976: Prevent shadowing of TypeError in zip() (GH-15592) (GH-15608)Miss Islington (bot)2019-08-301-4/+0
* [3.8] bpo-37034: Display argument name on errors with keyword arguments with ...Serhiy Storchaka2019-08-2939-332/+332
* bpo-37960: Silence only necessary errors in repr() of buffered and text strea...Miss Islington (bot)2019-08-292-18/+16
* bpo-37372: Fix error unpickling datetime.time objects from Python 2 with seco...Miss Islington (bot)2019-08-291-1/+1
* bpo-37951: Lift subprocess's fork() restriction (GH-15544)Miss Islington (bot)2019-08-271-2/+4