summaryrefslogtreecommitdiff
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* [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
* [2.7] bpo-33767: Fix improper use of SystemError by mmap.mmap objects (GH-738...Serhiy Storchaka2018-06-051-21/+3
* [2.7] bpo-30654: Do not reset SIGINT handler to SIG_DFL in finisignal (GH-714...Antoine Pitrou2018-06-031-12/+2
* [2.7] bpo-33677: Fix the signature of tp_clear handler for deque. (GH-7196). ...Serhiy Storchaka2018-05-311-3/+4
* [2.7] bpo-33622: Fix issues with handling errors in the GC. (GH-7078) (#7096)Serhiy Storchaka2018-05-241-6/+6
* bpo-33583: Add note in PyObject_GC_Resize() doc (GH-7021)Miss Islington (bot)2018-05-211-0/+1
* [2.7] bpo-33308: Fix a crash in the parser module when convert an ST object. ...Serhiy Storchaka2018-04-191-3/+3
* [2.7] Fix error message in sqlite connection thread check. (GH-6028). (GH-6325)Serhiy Storchaka2018-04-011-2/+2