summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* [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
* closes bpo-31608: Fix a crash in methods of a subclass of _collections.deque ...Miss Islington (bot)2018-09-111-4/+13
* bpo-34625: Update vendorized expat version to 2.2.6. (GH-9150)Miss Islington (bot)2018-09-114-27/+69
* bpo-32270: Don't close stdin/out/err in pass_fds (GH-6242) (GH-9148)Miss Islington (bot)2018-09-111-10/+14
* [3.7] Fix misleading mentions of tp_size in comments. (GH-9136)Benjamin Peterson2018-09-1012-16/+16
* [3.7] bpo-34604: Fix possible mojibake in pwd.getpwnam() and grp.getgrnam() (...William Grzybowski2018-09-092-2/+2
* closes bpo-34581 : Conditionalize use of __pragma in Modules/socketmodule.c. ...Miss Islington (bot)2018-09-051-2/+5
* bpo-34563: Fix for invalid assert on big output of multiprocessing.Process (G...Miss Islington (bot)2018-09-042-9/+9
* closes bpo-34555: Fix incorrectly nested test for HAVE_LINUX_VM_SOCKETS_H (GH...Miss Islington (bot)2018-09-011-24/+25
* bpo-34485: Fix _Py_InitializeCore() for C locale coercion (GH-8979) (GH-8981)Victor Stinner2018-08-281-9/+13
* bpo-34527: POSIX locale enables the UTF-8 Mode (GH-8972) (GH-8974)Victor Stinner2018-08-281-6/+16
* [3.7] bpo-34492: Modules/main.c: Fix copy_wstrlist() (GH-8910) (GH-8922)Alexey Izbyshev2018-08-251-1/+4
* bpo-13312: Avoid int underflow in time year. (GH-8912)Miss Islington (bot)2018-08-251-0/+6
* closes bpo-34471: _datetime: Add missing NULL check to tzinfo_from_isoformat_...Miss Islington (bot)2018-08-241-1/+4
* bpo-34454: fix .fromisoformat() methods crashing on inputs with surrogate cod...Miss Islington (bot)2018-08-231-9/+72
* bpo-34207: Fix pymain_read_conf() for UTF-8 Mode (GH-8868) (GH-8870)Victor Stinner2018-08-231-1/+6
* bpo-34456: pickle: Add missing NULL check to save_global(). (GH-8851)Miss Islington (bot)2018-08-221-0/+2
* bpo-34441: Fix ABC.__subclasscheck__ crash on classes with invalid __subclass...Miss Islington (bot)2018-08-201-0/+3
* bpo-34217: Use lowercase for windows headers (GH-8472)Miss Islington (bot)2018-08-162-2/+2
* bpo-34395: Fix memory leaks caused by incautious usage of PyMem_Resize(). (GH...Miss Islington (bot)2018-08-162-42/+22
* [3.7] bpo-34247: Fix Python 3.7 initialization (#8659)Victor Stinner2018-08-051-105/+196
* Fix docstring of Profiler class (GH-8651)Miss Islington (bot)2018-08-031-2/+2
* bpo-33871: Fix os.sendfile(), os.writev(), os.readv(), etc. (GH-7931)Miss Islington (bot)2018-07-311-17/+20