aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* bpo-38142: Updated _hashopenssl.c to be PEP 384 compliant (#16071)Christian Heimes2019-09-251-54/+68
* bpo-38248: Fix inconsistent immediate asyncio.Task cancellation (GH-16330)Yury Selivanov2019-09-251-7/+8
* Changed conditions for ctypes array-in-struct handling. (GH-16381)Vinay Sajip2019-09-251-7/+4
* bpo-22273: Disabled tests while investigating buildbot failures on ARM7L/PPC6...Vinay Sajip2019-09-251-1/+1
* bpo-38265: Update os.pread to accept the length type as Py_ssize_t. (GH-16359)Dong-hee Na2019-09-252-10/+17
* bpo-22273: Update ctypes to correctly handle arrays in small structur… (GH-...Vinay Sajip2019-09-252-0/+146
* bpo-38234: Cleanup getpath.c (GH-16367)Victor Stinner2019-09-251-73/+116
* bpo-38234: Add tests for Python init path config (GH-16358)Victor Stinner2019-09-241-3/+3
* bpo-38234: read_pth_file() now returns PyStatus (GH-16338)Victor Stinner2019-09-241-79/+112
* bpo-38234: Fix _PyConfig_InitPathConfig() (GH-16335)Victor Stinner2019-09-231-62/+78
* bpo-38234: Fix PyConfig_Read() when Py_SetPath() was called (GH-16298)Victor Stinner2019-09-211-4/+6
* bpo-6559: Update _posixsubprocess.fork_exec doc (GH-16283)Orivej Desh2019-09-201-4/+7
* bpo-38140: Make dict and weakref offsets opaque for C heap types (#16076)Eddie Elizondo2019-09-192-1/+119
* bpo-38203: faulthandler.dump_traceback_later() is always available (GH-16249)Victor Stinner2019-09-181-17/+0
* bpo-38185: Fixed case-insensitive string comparison in sqlite3.Row indexing. ...Serhiy Storchaka2019-09-171-31/+31
* bpo-33936: Don't call obsolete init methods with OpenSSL 1.1.0+ (GH-16140)Christian Heimes2019-09-161-1/+1
* bpo-38175: Fix a memory leak in comparison of sqlite3.Row objects. (GH-16155)Serhiy Storchaka2019-09-161-5/+7
* Fix a possbile refleak in setint() of mmapmodule.c (GH-16136)Hai Shi2019-09-161-1/+2
* bpo-37798: Prevent undefined behavior in direct calls to the C helper functio...Raymond Hettinger2019-09-151-1/+17
* Fix missing dec ref (#16158)Dino Viehland2019-09-151-0/+1
* bpo-38153: detect shake independently from sha3 (GH-16143)Christian Heimes2019-09-141-2/+11
* bpo-38116: Convert select module to PEP-384 (#15971)Dino Viehland2019-09-142-245/+210
* bpo-37206: Unrepresentable default values no longer represented as None. (GH-...Serhiy Storchaka2019-09-1426-202/+200
* bpo-38005: Fixed comparing and creating of InterpreterID and ChannelID. (GH-1...Serhiy Storchaka2019-09-131-85/+65
* bpo-38150 Fix refleak in the finalizer of a _testcapimodule type (GH-16115)Eddie Elizondo2019-09-131-5/+13
* bpo-38153: Normalize hashlib algorithm names (GH-16083)Christian Heimes2019-09-131-21/+146
* bpo-38075: Port _randommodule.c to PEP-384 (GH-15798)Dino Viehland2019-09-131-57/+92
* bpo-9216: Add usedforsecurity to hashlib constructors (GH-16044)Christian Heimes2019-09-1216-159/+466
* bpo-36046: Add user and group parameters to subprocess (GH-11950)Patrick McLean2019-09-121-4/+132
* bpo-38137: Re-add OpenSSL 1.0.2 compat (GH-16051)Christian Heimes2019-09-121-0/+6
* bpo-21872: fix lzma library decompresses data incompletely (GH-14048)animalize2019-09-121-6/+22
* bpo-38132: Check EVP_DigestUpdate for error (GH-16041)Christian Heimes2019-09-121-6/+16
* bpo-38132: Simplify _hashopenssl code (GH-16023)Christian Heimes2019-09-122-122/+385
* bpo-38134: Remove PKBDF2_HMAC_fast from _hashopenssl (GH-16028)Christian Heimes2019-09-122-123/+1
* closes bpo-38127: _ctypes: PyObject_IsSubclass() should be checked for failur...Zackery Spytz2019-09-121-1/+5
* closes bpo-37405: Make socket.getsockname() always return a tuple for AF_CAN....bggardner2019-09-121-1/+1
* bpo-37879: Fix warnings in _testcapimodule (GH-16004)Petr Viktorin2019-09-121-6/+7
* bpo-32592: Set Windows 8 as the minimum required version for API support (GH-...Steve Dower2019-09-111-2/+0
* bpo-33166: Change os.cpu_count to return active (real) processors (GH-15949)Steve Dower2019-09-111-17/+3
* bpo-38110: Use fdwalk for os.closerange() when available. (GH-15224)Jakub Kulík2019-09-111-0/+25
* bpo-37879: Suppress subtype_dealloc decref when base type is a C heap type (G...Eddie Elizondo2019-09-111-0/+220
* bpo-37752: Delete redundant Py_CHARMASK in normalizestring() (GH-15095)Jordon Xu2019-09-103-6/+6
* bpo-38073: Make pwd module PEP-384 compatible (GH-15790)Dino Viehland2019-09-101-16/+35
* bpo-37499: Test various C calling conventions (GH-15776)Petr Viktorin2019-09-101-0/+164
* bpo-38069: Convert _posixsubprocess to PEP-384 (GH-15780)Dino Viehland2019-09-101-8/+58
* bpo-38071: Make termios PEP-384 compatible (GH-15785)Dino Viehland2019-09-101-20/+47
* bpo-38072: PEP-384 grpmodule (GH-15788)Dino Viehland2019-09-101-19/+40
* Fix calling order of PyEval_InitThreads. (GH-4602)Kenta Murata2019-09-101-1/+1
* bpo-38074: Make zlib extension module PEP-384 compatible (GH-15792)Dino Viehland2019-09-101-73/+86
* bpo-38076: Make struct module PEP-384 compatible (#15805)Dino Viehland2019-09-101-147/+172