summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* bpo-32710: Fix leak in Overlapped_WSASend() (GH-11469)Victor Stinner2019-01-081-0/+2
* bpo-35568: add 'raise_signal' function (GH-11335)Vladimir Matveev2019-01-083-22/+60
* bpo-35664: Optimize operator.itemgetter (GH-11435)Raymond Hettinger2019-01-071-5/+37
* closes bpo-35643: Fix a SyntaxWarning: invalid escape sequence in Modules/_sh...Mickaël Schoentgen2019-01-021-1/+1
* bpo-32492: Tweak _collections._tuplegetter. (GH-11367)Serhiy Storchaka2018-12-311-8/+8
* bpo-35214: Annotate posix calls for clang MSan. (#11389)Gregory P. Smith2018-12-311-0/+16
* bpo-35550: Fix incorrect Solaris define guards (GH-11275)Jakub Kulík2018-12-314-5/+5
* Dead code removal from _hashopenssl. (GH-11379)Gregory P. Smith2018-12-312-121/+19
* bpo-35214: MSan workarounds for socket, time, and test_faulthandler. (GH-11375)Gregory P. Smith2018-12-312-0/+27
* bpo-28503: Use crypt_r() when available instead of crypt() (GH-11373)Gregory P. Smith2018-12-301-1/+9
* bpo-32492: 1.6x speed up in namedtuple attribute access using C fast-path (#1...Pablo Galindo2018-12-302-0/+191
* bpo-34373: fix test_mktime and test_pthread_getcpuclickid tests on AIX (GH-8726)Michael Felt2018-12-281-12/+33
* bpo-20182: AC convert remaining functions/methods in _hashopenssl.c (GH-9213)Tal Einat2018-12-272-100/+303
* bpo-27643 - skip test_ctypes test case with XLC compiler. (GH-5164)Michael Felt2018-12-261-4/+14
* bpo-23867: Argument Clinic: inline parsing code for a single positional param...Serhiy Storchaka2018-12-2533-206/+1004
* bpo-35529: Fix a reference counting bug in PyCFuncPtr_FromDll(). (GH-11229)Zackery Spytz2018-12-201-5/+8
* 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