summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
...
* [3.7] bpo-35214: Initial clang MemorySanitizer support (GH-10479) (GH-10492)Gregory P. Smith2018-11-123-1/+19
* bpo-35194: Fix a wrong constant in cp932 codec (GH-10420)Miss Islington (bot)2018-11-091-1/+1
* bpo-35133: Fix mistakes when concatenate string literals on different lines. ...Miss Islington (bot)2018-11-053-4/+4
* [3.7]bpo-29341: Backport b942707 3.7 (#10298)BNMetrics2018-11-022-31/+31
* closes bpo-35139: The `pyexpat` module's macros in `Modules/Setup` now match ...Miss Islington (bot)2018-11-021-1/+1
* bpo-35062: Fix parsing _io.IncrementalNewlineDecoder's *translate* argument. ...Miss Islington (bot)2018-10-311-1/+1
* Fix a possible "double decref" in termios.tcgetattr(). (GH-10194)Miss Islington (bot)2018-10-291-2/+2
* bpo-35090: Fix potential division by zero in allocator wrappers (GH-10174)Miss Islington (bot)2018-10-283-5/+5
* bpo-35059, libmpdec: Add missing EXTINLINE in mpdecimal.h (GH-10128)Miss Islington (bot)2018-10-261-5/+5
* bpo-34794: Fix a leak in Tkinter. (GH-10025) (GH-10069)Miss Islington (bot)2018-10-231-3/+1
* Fix error handling bugs in _elementtree.c. (GH-10060)Miss Islington (bot)2018-10-231-11/+11
* bpo-34454: Clean up datetime.fromisoformat surrogate handling (GH-8959)Miss Islington (bot)2018-10-221-72/+93
* closes bpo-35025: Properly guard the `CLOCK_GETTIME` et al macros in timemodu...Miss Islington (bot)2018-10-211-0/+4
* bpo-32890, os: Use errno instead of GetLastError() in execve() and truncate()...Miss Islington (bot)2018-10-201-3/+15
* bpo-20216: Correct docstrings of digest() methods in hashlib. (GH-9873) (GH-9...Miss Islington (bot)2018-10-199-17/+17
* bpo-34824: Fix a possible NULL pointer dereference in _ssl.c (GH-9606) (GH-9743)Miss Islington (bot)2018-10-191-2/+7
* Elaborate datetime.timedelta docstring (GH-7458)Miss Islington (bot)2018-10-191-1/+5
* Fix several reference counting bugs in pyexpat.c. (GH-9955)Miss Islington (bot)2018-10-191-4/+8
* bpo-35008: Fix possible leaks in Element.__setstate__(). (GH-9924)Miss Islington (bot)2018-10-181-31/+64
* bpo-24658: Fix read/write greater than 2 GiB on macOS (GH-1705)Miss Islington (bot)2018-10-181-5/+3
* [3.7] bpo-35011: Restore use of pyexpatns.h in libexpat (GH-9939) (GH-9940)Miss Islington (bot)2018-10-181-0/+4
* bpo-34941: Fix searching Element subclasses. (GH-9766)Miss Islington (bot)2018-10-141-12/+13
* [3.7] bpo-34922: Fix integer overflow in the digest() and hexdigest() methods...Serhiy Storchaka2018-10-111-1/+4
* [3.7] bpo-34906: Doc: Fix typos (2) (GH-9735)Stéphane Wirtel2018-10-101-1/+1
* [3.7] Fix a compiler warning added in bpo-34872. (GH-9722). (GH-9726)Serhiy Storchaka2018-10-051-1/+1
* bpo-34906: Doc: Fix typos (GH-9712)Miss Islington (bot)2018-10-051-1/+1
* [3.7] bpo-34872: Fix self-cancellation in C implementation of asyncio.Task (G...Elvis Pranskevichus2018-10-031-3/+8
* Fix incorrect error handling in _pickle.Unpickler.__init__() (GH-9630)Miss Islington (bot)2018-09-291-1/+1
* bpo-34736: improve error message for invalid length b64decode inputs (GH-9563)Miss Islington (bot)2018-09-281-3/+7
* [3.7] bpo-34762: Update PyContext* refs to PyObject* in asyncio and decimal (...Yury Selivanov2018-09-272-12/+11
* bpo-34783: Fix Py_Main() (GH-9526)Victor Stinner2018-09-241-79/+84
* [3.7] bpo-34670: Add TLS 1.3 post handshake auth (GH-9460) (GH-9505)Christian Heimes2018-09-232-9/+111
* bpo-34759: Fix error handling in ssl 'unwrap()' (GH-9468)Miss Islington (bot)2018-09-221-2/+2
* bpo-34762: Fix contextvars C API to use PyObject* pointer types. (GH-9473)Miss Islington (bot)2018-09-211-1/+1
* bpo-34735: Fix a memory leak in Modules/timemodule.c (GH-9418)Miss Islington (bot)2018-09-211-0/+1
* closes bpo-34656: Avoid relying on signed overflow in _pickle memos. (GH-9261)Miss Islington (bot)2018-09-211-31/+31
* bpo-34743: Fix test_database_source_name under SQLite 3.7.9 (GH-9426)Miss Islington (bot)2018-09-201-0/+6
* bpo-32215: Fix performance regression in sqlite3 (GH-8511)Miss Islington (bot)2018-09-201-4/+4
* Revert "[3.7] bpo-34589: Add -X coerce_c_locale option; C locale coercion off...Victor Stinner2018-09-191-124/+35
* bpo-34623: Use XML_SetHashSalt in _elementtree (GH-9146)Miss Islington (bot)2018-09-182-0/+10
* [3.7] bpo-34589: Add -X coerce_c_locale option; C locale coercion off by defa...Victor Stinner2018-09-181-35/+124
* bpo-32533: Fixed thread-safety of error handling in _ssl. (GH-7158)Miss Islington (bot)2018-09-171-60/+68
* bpo-34710: fix SSL module build (GH-9347)Miss Islington (bot)2018-09-171-0/+1
* bpo-34603, ctypes/libffi_msvc: Fix returning structs from functions (GH-9258)Miss Islington (bot)2018-09-165-6/+221
* bpo-34658: Fix rare subprocess prexec_fn fork error. (GH-9255)Miss Islington (bot)2018-09-131-7/+13
* bpo-34649: Add missing NULL checks to _encoded_const() (GH-9225)Miss Islington (bot)2018-09-121-3/+3
* bpo-31577: Fix a crash in os.utime() in case of a bad ns argument. (GH-3752)Miss Islington (bot)2018-09-121-0/+6
* closes bpo-31903: Release the GIL when calling into SystemConfiguration (GH-4...Miss Islington (bot)2018-09-121-0/+6
* [3.7] closes bpo-25041: Document AF_PACKET socket address format. (GH-9207)Benjamin Peterson2018-09-121-3/+3
* Delete old expat comment. (GH-9197)Miss Islington (bot)2018-09-121-8/+0