summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* bpo-35502: Fix reference leaks in ElementTree.TreeBuilder. (GH-11170)Serhiy Storchaka2018-12-181-0/+5
* bpo-35504: Fix segfaults and SystemErrors when deleting certain attrs. (GH-11...Zackery Spytz2018-12-176-0/+32
* bpo-35490: Remove the DecodeFSDefault return converter in AC. (#11152)Serhiy Storchaka2018-12-172-14/+10
* bpo-35415: validate fileno argument to socket.socket (GH-10917)Dima Tisnek2018-12-171-20/+29
* bpo-35489: Use "const Py_UNICODE *" for the Py_UNICODE converter in AC. (GH-1...Serhiy Storchaka2018-12-146-22/+26
* bpo-31446: Copy command line that should be passed to CreateProcessW(). (GH-1...Vladimir Matveev2018-12-142-8/+26
* bpo-33106: change dbm key deletion error for readonly file from KeyError to d...Xiang Zhang2018-12-122-5/+19
* bpo-35454: Fix miscellaneous minor issues in error handling. (#11077)Serhiy Storchaka2018-12-113-8/+17
* bpo-35444: Unify and optimize the helper for getting a builtin object. (GH-11...Serhiy Storchaka2018-12-113-8/+6
* bpo-31374: expat doesn't include <pyconfig.h> on Windows (GH-11079)Victor Stinner2018-12-101-1/+3
* bpo-32788: Better error handling in sqlite3. (GH-3723)Serhiy Storchaka2018-12-105-121/+128
* bpo-31374: Include pyconfig.h earlier in expat (GH-11064)Victor Stinner2018-12-101-0/+1
* bpo-35050: AF_ALG length check off-by-one error (GH-10058)Christian Heimes2018-12-101-3/+5
* bpo-35445: Do not ignore memory errors when create posix.environ. (GH-11049)Serhiy Storchaka2018-12-101-37/+27
* Remove a duplicate descriptor in gdbm. (GH-11053)Serhiy Storchaka2018-12-091-1/+0
* bpo-35441: Remove dead and buggy code related to PyList_SetItem(). (GH-11033)Zackery Spytz2018-12-084-24/+15
* bpo-22005: Fix condition for unpickling a date object. (GH-11025)Serhiy Storchaka2018-12-071-1/+1
* bpo-22005: Fixed unpickling instances of datetime classes pickled by Python 2...Serhiy Storchaka2018-12-071-91/+174
* bpo-35436: Add missing PyErr_NoMemory() calls and other minor bug fixes. (GH-...Zackery Spytz2018-12-078-15/+43
* bpo-35384: The repr of ctypes.CArgObject no longer fails for non-ascii charac...Serhiy Storchaka2018-12-061-4/+22
* bpo-35310: Clear select() lists before returning upon EINTR (GH-10877)Oran Avraham2018-12-051-0/+4
* bpo-34604: Use %R because of invisible characters or trailing whitespaces. (G...William Grzybowski2018-12-052-2/+2
* bpo-34987: Fix a possible null pointer dereference in _pickle.c's save_reduce...Zackery Spytz2018-12-051-1/+4
* bpo-34052: Prevent SQLite functions from setting callbacks on exceptions. (GH...Sergey Fedoseev2018-12-051-18/+13
* bpo-32787: Better error handling in ctypes. (#3727)Serhiy Storchaka2018-12-055-112/+247
* bpo-35373: Fix PyInit_time() error handling (GH-10865)Victor Stinner2018-12-031-4/+7
* bpo-35373: Fix PyInit_timezone() if HAVE_DECL_TZNAME is defined (GH-10861)Victor Stinner2018-12-031-4/+5
* bpo-10320: Replace nonstandard sprintf() length modifier in ctypes' PyCArg_re...Zackery Spytz2018-12-031-1/+1
* bpo-35371: Fix possible crash in os.utime() on Windows. (GH-10844)Serhiy Storchaka2018-12-011-22/+15
* get_gmtoff() now returns time_t (GH-10838)Victor Stinner2018-11-301-11/+36
* Fix compiler warning in call_readline() (GH-10820)Victor Stinner2018-11-301-3/+3
* bpo-35356: Fix a possible reference leak in nis.maps(). (GH-10808)Zackery Spytz2018-11-301-0/+1
* bpo-35337: Fix gettmarg(): use PyStructSequence_GET_ITEM() (GH-10765)Victor Stinner2018-11-281-2/+2
* bpo-33029: Fix signatures of getter and setter functions. (GH-10746)Serhiy Storchaka2018-11-2716-68/+68
* bpo-33012: Fix invalid function cast warnings with gcc 8. (GH-6749)Serhiy Storchaka2018-11-2727-136/+136
* bpo-33012: Fix signatures of METH_NOARGS funstions. (GH-10736)Serhiy Storchaka2018-11-273-12/+12
* bpo-33012: Fix invalid function cast warnings with gcc 8 in Argument Clinic. ...Serhiy Storchaka2018-11-2756-516/+841
* closes bpo-34212: Build core extension modules with Py_BUILD_CORE_BUILTIN. (G...E. M. Bray2018-11-271-1/+1
* bpo-35081: Add Include/internal/pycore_tupleobject.h (GH-10705)Victor Stinner2018-11-251-1/+1
* bpo-35303: Fix a reference leak in _operator.c's methodcaller_repr(). (GH-10689)Zackery Spytz2018-11-231-0/+1
* bpo-35189: Retry fnctl calls on EINTR (GH-10413)nierob2018-11-231-23/+32
* bpo-35177, Python-ast.h: Fix "Yield" compiler warning (GH-10664)Victor Stinner2018-11-221-0/+1
* bpo-24658: os.read() reuses _PY_READ_MAX (GH-10657)Victor Stinner2018-11-221-5/+1
* bpo-9566: Fix compiler warnings in pyexpat.c (GH-10654)Victor Stinner2018-11-221-2/+4
* cjkcodecs: Fix compiler warning (GH-10651)Victor Stinner2018-11-221-2/+2
* bpo-35059: Cast void* to PyObject* (GH-10650)Victor Stinner2018-11-222-5/+7
* bpo-35059: Cleanup usage of Python macros (GH-10648)Victor Stinner2018-11-223-89/+112
* bpo-35059: Convert _PyObject_GC_TRACK() to inline function (GH-10643)Victor Stinner2018-11-221-6/+7
* bpo-35081: Add Include/internal/pycore_object.h (GH-10640)Victor Stinner2018-11-218-1/+9
* bpo-25750: Fix a compiler warning introduced in GH-9084. (GH-10234)Serhiy Storchaka2018-11-201-5/+5