summaryrefslogtreecommitdiff
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
...
* [3.7] Remove stray quote in os.replace docstring. (GH-11835)Benjamin Peterson2019-02-122-4/+4
* lru_cache: Add more comments. Fix comment typos. Clarify a comment. (GH-1179...Miss Islington (bot)2019-02-081-4/+25
* bpo-29734: nt._getfinalpathname handle leak (GH-740)Miss Islington (bot)2019-02-021-8/+10
* Consistently move the misses update to just before the user function call (GH...Miss Islington (bot)2019-01-311-3/+5
* bpo-35847: RISC-V needs CTYPES_PASS_BY_REF_HACK (GH-11694)Miss Islington (bot)2019-01-291-1/+1
* bpo-35780: Fix errors in lru_cache() C code (GH-11623) (GH-11682)Miss Islington (bot)2019-01-261-84/+188
* bpo-35720: Fixing a memory leak in pymain_parse_cmdline_impl() (GH-11528)Miss Islington (bot)2019-01-221-0/+1
* bpo-35746: Fix segfault in ssl's cert parser (GH-11569)Miss Islington (bot)2019-01-151-0/+4
* bpo-35066: _dateime.datetime.strftime copies trailing '%' (GH-10692)Miss Islington (bot)2019-01-141-5/+8
* bpo-32710: Fix _overlapped.Overlapped memory leaks (GH-11489)Miss Islington (bot)2019-01-111-24/+54
* bpo-32710: Fix leak in Overlapped_WSASend() (GH-11469)Miss Islington (bot)2019-01-081-0/+2
* closes bpo-35643: Fix a SyntaxWarning: invalid escape sequence in Modules/_sh...Miss Islington (bot)2019-01-021-1/+1
* [3.7] bpo-35214: Annotate posix calls for clang MSan. (GH-11389) (GH-11391)Gregory P. Smith2018-12-301-0/+13
* bpo-35550: Fix incorrect Solaris define guards (GH-11275)Miss Islington (bot)2018-12-304-5/+5
* bpo-28503: Use crypt_r() when available instead of crypt() (GH-11373) (GH-11376)Miss Islington (bot)2018-12-301-1/+9
* bpo-35214: MSan workarounds for socket, time, and test_faulthandler. (GH-1137...Miss Islington (bot)2018-12-302-0/+27
* bpo-35529: Fix a reference counting bug in PyCFuncPtr_FromDll(). (GH-11229)Miss Islington (bot)2018-12-201-5/+8
* bpo-35502: Fix reference leaks in ElementTree.TreeBuilder. (GH-11170)Miss Islington (bot)2018-12-181-0/+5
* bpo-35504: Fix segfaults and SystemErrors when deleting certain attrs. (GH-11...Miss Islington (bot)2018-12-176-0/+32
* [3.7] bpo-35489: Use "const Py_UNICODE *" for the Py_UNICODE converter in AC....Serhiy Storchaka2018-12-146-22/+26
* [3.7] bpo-31446: Copy command line that should be passed to CreateProcessW()....Serhiy Storchaka2018-12-142-8/+26
* bpo-35444: Fix error handling when fail to look up builtin "getattr". (GH-110...Serhiy Storchaka2018-12-111-6/+2
* bpo-35454: Fix miscellaneous minor issues in error handling. (GH-11077)Miss Islington (bot)2018-12-103-8/+17
* bpo-31374: expat doesn't include <pyconfig.h> on Windows (GH-11079)Miss Islington (bot)2018-12-101-1/+3
* bpo-31374: Include pyconfig.h earlier in expat (GH-11064)Miss Islington (bot)2018-12-101-0/+1
* bpo-35050: AF_ALG length check off-by-one error (GH-10058) (GH-11069)Victor Stinner2018-12-101-3/+7
* bpo-35441: Remove dead and buggy code related to PyList_SetItem(). (GH-11033)Miss Islington (bot)2018-12-084-24/+15
* [3.7] bpo-22005: Fixed unpickling instances of datetime classes pickled by Py...Serhiy Storchaka2018-12-071-78/+169
* bpo-35436: Add missing PyErr_NoMemory() calls and other minor bug fixes. (GH-...Zackery Spytz2018-12-077-12/+39
* bpo-35384: The repr of ctypes.CArgObject no longer fails for non-ascii charac...Miss Islington (bot)2018-12-061-4/+22
* bpo-35310: Clear select() lists before returning upon EINTR (GH-10877)Miss Islington (bot)2018-12-051-0/+4
* bpo-34604: Use %R because of invisible characters or trailing whitespaces. (G...Serhiy Storchaka2018-12-052-2/+2
* bpo-34052: Prevent SQLite functions from setting callbacks on exceptions. (GH...Serhiy Storchaka2018-12-051-17/+13
* bpo-34987: Fix a possible null pointer dereference in _pickle.c's save_reduce...Miss Islington (bot)2018-12-051-1/+4
* [3.7] bpo-35373: Fix PyInit_timezone() error handling (GH-10864)Victor Stinner2018-12-041-5/+24
* bpo-10320: Replace nonstandard sprintf() length modifier in ctypes' PyCArg_re...Miss Islington (bot)2018-12-031-1/+1
* bpo-35371: Fix possible crash in os.utime() on Windows. (GH-10844)Miss Islington (bot)2018-12-011-22/+15
* get_gmtoff() now returns time_t (GH-10838) (GH-10839)Victor Stinner2018-12-011-9/+29
* bpo-35336: Fix PYTHONCOERCECLOCALE=1 (GH-10806) (GH-10813)Victor Stinner2018-11-301-2/+8
* bpo-35356: Fix a possible reference leak in nis.maps(). (GH-10808)Miss Islington (bot)2018-11-301-0/+1
* bpo-33012: Fix signatures of METH_NOARGS functions. (GH-10736) (GH-10748)Serhiy Storchaka2018-11-273-12/+12
* bpo-33029: Fix signatures of getter and setter functions. (GH-10746)Miss Islington (bot)2018-11-2716-68/+68
* closes bpo-34212: Build core extension modules with Py_BUILD_CORE_BUILTIN. (G...Miss Islington (bot)2018-11-261-1/+1
* bpo-35303: Fix a reference leak in _operator.c's methodcaller_repr(). (GH-10689)Miss Islington (bot)2018-11-231-0/+1
* [3.7] bpo-35189: Retry fnctl calls on EINTR (GH-10413) (GH-10678)Victor Stinner2018-11-231-23/+32
* bpo-24658: os.read() reuses _PY_READ_MAX (GH-10657)Miss Islington (bot)2018-11-221-5/+1
* bpo-28604: Fix localeconv() for different LC_MONETARY (GH-10606) (GH-10619)Victor Stinner2018-11-201-6/+85
* bpo-35021: Fix assertion failures in _datetimemodule.c. (GH-10039)Miss Islington (bot)2018-11-201-48/+51
* bpo-34725: Adds _Py_SetProgramFullPath so embedders may override sys.executab...Steve Dower2018-11-171-0/+26
* Fix a possible reference leak in _socket.getaddrinfo(). (GH-10543)Miss Islington (bot)2018-11-151-2/+4