summaryrefslogtreecommitdiff
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* bpo-35529: Fix a reference counting bug in PyCFuncPtr_FromDll(). (GH-11229)Miss Islington (bot)2018-12-201-5/+8
* [2.7] bpo-35441: Remove dead and buggy code related to PyList_SetItem(). (GH-...Serhiy Storchaka2018-12-194-19/+21
* bpo-10320: Use PY_FORMAT_LONG_LONG in ctypes' PyCArg_repr(). (GH-11230)Zackery Spytz2018-12-191-5/+1
* bpo-10320: Replace nonstandard sprintf() length modifier in ctypes' PyCArg_re...Miss Islington (bot)2018-12-181-1/+1
* [2.7] bpo-31374: Include pyconfig.h earlier in expat (GH-11078)Victor Stinner2018-12-102-1/+6
* bpo-31374: Include pyconfig.h earlier in expat (GH-11064)Miss Islington (bot)2018-12-101-0/+1
* [2.7] bpo-34052: Prevent SQLite functions from setting callbacks on exception...Serhiy Storchaka2018-12-061-20/+13
* [2.7] bpo-16865: Support arrays >=2GB in ctypes. (GH-3006). (GH-7441)Serhiy Storchaka2018-12-041-6/+18
* [2.7] bpo-25862: Fix several bugs in the _io module. (GH-8026) (GH-8033)Serhiy Storchaka2018-12-042-7/+17
* bpo-35356: Fix a possible reference leak in nis.maps(). (GH-10808)Miss Islington (bot)2018-11-301-0/+1
* [2.7] bpo-35021: Fix assertion failures in _datetimemodule.c. (GH-10039) (GH-...Serhiy Storchaka2018-11-201-46/+50
* Fix a possible reference leak in _socket.getaddrinfo(). (GH-10543)Miss Islington (bot)2018-11-151-2/+4
* [2.7] bpo-35194: Fix a wrong constant in cp932 codec. (GH-10420) (GH-10433)Alexey Izbyshev2018-11-101-1/+1
* [2.7] closes bpo-35139: The `pyexpat` module's macros in `Modules/Setup` now ...Benjamin Peterson2018-11-011-1/+1
* bpo-35062: Fix parsing _io.IncrementalNewlineDecoder's *translate* argument. ...Miss Islington (bot)2018-10-311-1/+1
* [2.7] Fix a possible "double decref" in termios.tcgetattr(). (GH-10194) (GH-1...Zackery Spytz2018-10-291-2/+2
* [2.7] bpo-35068: Fix possible crashes in pyexpat.c. (GH-10099)Zackery Spytz2018-10-291-17/+11
* [2.7] bpo-34794: Fix a leak in Tkinter. (GH-10025) (GH-10181)Serhiy Storchaka2018-10-281-4/+2
* [2.7] Fix error handling bugs in _elementtree.c. (GH-10060) (GH-10080)Zackery Spytz2018-10-261-28/+37
* Fix several reference counting bugs in pyexpat.c. (GH-9955)Miss Islington (bot)2018-10-191-4/+8
* [2.7] bpo-34603, ctypes/libffi_msvc: Fix returning structs from functions (GH...Vladimir Matveev2018-09-195-6/+221
* [2.7] bpo-34623: Use XML_SetHashSalt in _elementtree (GH-9146) (GH-9394)Christian Heimes2018-09-182-0/+10
* [2.7] bpo-34710: fix SSL module build (GH-9347) (GH-9353)Christian Heimes2018-09-171-0/+1
* bpo-34649: Add missing NULL checks to _encoded_const() (GH-9225)Miss Islington (bot)2018-09-131-3/+3
* [2.7] bpo-28994: Remove mistakenly backported atexitmodule.c (GH-9214)Zackery Spytz2018-09-121-346/+0
* [2.7] Delete old expat comment. (GH-9205)Benjamin Peterson2018-09-111-8/+0
* [2.7] closes bpo-31608: Fix a crash in methods of a subclass of _collections....Benjamin Peterson2018-09-111-2/+11
* bpo-34625: Update vendorized expat version to 2.2.6. (GH-9150)Miss Islington (bot)2018-09-104-27/+69
* [2.7] Fix misleading mentions of tp_size in comments (GH-9138)Benjamin Peterson2018-09-105-8/+8
* bpo-34491: Add missing Py_DECREF() in _bsddb's DB_join() (GH-8909)Zackery Spytz2018-08-251-0/+1
* bpo-34395: Fix memory leaks caused by incautious usage of PyMem_Realloc(). (G...Sergey Fedoseev2018-08-171-32/+24
* Fix docstring of Profiler class (GH-8651)Miss Islington (bot)2018-08-031-2/+2
* Fix compilation warnings on Windows (GH-8627)Victor Stinner2018-08-022-2/+2
* bpo-29565: Fix compilation for C89 (GH-8626)Victor Stinner2018-08-021-8/+12
* bpo-29565: Corrected ctypes passing of large structs by value on Windows AMD6...Victor Stinner2018-08-022-0/+23
* [2.7] bpo-34234: Use _PyAnyInt_Check() and _PyAnyInt_CheckExact(). (GH-8479)Serhiy Storchaka2018-07-3119-48/+45
* bpo-34229: Check start and stop of slice object to be long when they are not ...Xtreak2018-07-261-0/+24
* bpo-25943: Check for integer overflow in bsddb's DB_join(). (GH-8392)Zackery Spytz2018-07-221-1/+7
* bpo-25943: Fix potential heap corruption in bsddb's _db_associateCallback() (...Zackery Spytz2018-07-211-39/+54
* [2.7] bpo-34068: iobase_close could call PyObject_SetAttrString with an excep...Serhiy Storchaka2018-07-171-3/+11
* [2.7] bpo-23927: Make getargs.c skipitem() skipping 'w*'. (GH-8192). (GH-8255)Serhiy Storchaka2018-07-111-0/+61
* [2.7] prefix internal sqlite symbols with _pysqlite_ (GH-8215). (GH-8217)Benjamin Peterson2018-07-094-18/+18
* [2.7] delete some unused pysqlite forward declarations (GH-8211). (GH-8214)Benjamin Peterson2018-07-091-4/+0
* Don't export pending_threadfunc from _testcapi. (GH-8075)Miss Islington (bot)2018-07-031-1/+2
* [2.7] bpo-25862: Fix assertion failures in io.TextIOWrapper.tell(). (GH-3918)...Zackery Spytz2018-06-291-0/+4
* [2.7] closes bpo-33956: update vendored expat to 2.2.5 (GH-7925)Benjamin Peterson2018-06-268-1457/+1332
* Fix compiler warnings on Windows (GH-7729)Victor Stinner2018-06-161-11/+11
* bpo-29456: Fix bugs in unicodedata.normalize: u1176, u11a7 and u11c3 (GH-1958...Xiang Zhang2018-06-151-2/+6
* bpo-19418: audioop.c: Fix warnings on -0x80000000 (GH-7453)Victor Stinner2018-06-061-2/+5
* bpo-33781: audioop: enhance rounding double as int (GH-7447) (GH-7452)Victor Stinner2018-06-061-12/+19