summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
...
* bpo-32539: Fix OSError for os.listdir() for extended-length paths on Windows ...Anthony Sottile2018-01-151-1/+1
* correct the typos (GH-4950) (#4952)Miss Islington (bot)2017-12-211-2/+2
* [2.7] bpo-32186: Release the GIL during fstat and lseek calls (#4651)Nir Soffer2017-12-071-11/+44
* [2.7] bpo-31927: Fix reading arbitrary data when parse a AF_BLUETOOTH address...Serhiy Storchaka2017-11-091-42/+42
* bpo-31764: Prevent a crash in sqlite3.Cursor.close() in case the Cursor objec...Oren Milman2017-11-081-0/+5
* Fix bpo-27666 backporting error in _cursesmodule.c (#4305)Serhiy Storchaka2017-11-071-2/+2
* bpo-31770: Prevent a crash and refleaks when calling sqlite3.Cursor.__init__(...Miss Islington (bot)2017-11-071-8/+7
* [2.7] bpo-30057: Fix potential missed signal in signal.signal(). (GH-4258) (#...Antoine Pitrou2017-11-031-1/+4
* bpo-27666: Fixed stack corruption in curses.box() and curses.ungetmouse(). (G...Miss Islington (bot)2017-11-011-12/+26
* bpo-31893: Fix a backporting error in 8cbf4e10646c3f5b8f0d274c2d7dea5bb6305f5...Serhiy Storchaka2017-11-011-3/+6
* bpo-31919: Fix building the curses module on OpenIndiana. (GH-4211) (#4216)Miss Islington (bot)2017-11-011-2/+4
* bpo-25720: Fix the method for checking pad state of curses WINDOW (GH-4164) (...Miss Islington (bot)2017-11-011-8/+16
* bpo-31893: Fix errors in b9052a0f91d2e83bbc27267247a5920c82b242a3. (GH-4196) ...Miss Islington (bot)2017-10-311-4/+4
* [2.7] bpo-31893: Fixed select.kqueue(). (GH-4166) (#4193)Serhiy Storchaka2017-10-311-48/+84
* [2.7] bpo-31891: Fix building the curses module on NetBSD. (GH-4165). (#4194)Serhiy Storchaka2017-10-311-33/+40
* [2.7] bpo-31752: Fix possible crash in timedelta constructor called with cust...Serhiy Storchaka2017-10-231-2/+7
* [2.7] bpo-31334: Fix timeout in select.poll.poll() (GH-3277) (#4034)Riccardo Coccioli2017-10-181-0/+11
* [2.7] bpo-30058: Fixed buffer overflow in select.kqueue.control(). (GH-1095)....Serhiy Storchaka2017-10-121-16/+13
* [2.7] bpo-31490: Fix an assertion failure in ctypes in case an _anonymous_ at...Oren Milman2017-10-121-3/+3
* [2.7] bpo-31728: Prevent crashes in _elementtree due to unsafe cleanup of Ele...Oren Milman2017-10-111-20/+21
* bpo-31719: Fix test_regrtest.test_crashed() on s390x (#3912)Victor Stinner2017-10-091-0/+17
* [2.7] bpo-31675: Fix memory leaks in Tkinter's methods splitlist() and split(...2.7Serhiy Storchaka2017-10-041-2/+10
* [2.7] bpo-31478: Prevent unwanted behavior in _random.Random.seed() in case t...Oren Milman2017-10-021-2/+8
* bpo-28129: fix ctypes crashes (#386) (#3800)Victor Stinner2017-09-282-9/+34
* [2.7] bpo-31490: Fix an assertion failure in ctypes in case an _anonymous_ at...Miss Islington (bot)2017-09-271-1/+9
* [2.7] bpo-31311: Fix a SystemError and a crash in ctypes._CData.__setstate__(...Serhiy Storchaka2017-09-271-0/+10
* [2.7] bpo-25359: Add missed "goto error" after setting an exception. (GH-3712...Serhiy Storchaka2017-09-271-0/+1
* [2.7] bpo-30347: Stop crashes when concurrently iterate over itertools.groupb...Serhiy Storchaka2017-09-261-46/+32
* consistently use Py_TYPE, Py_REFCNT, and correct initializer macros (#3563)Benjamin Peterson2017-09-1410-35/+27
* [2.7] bpo-29136: Add TLS 1.3 cipher suites and OP_NO_TLSv1_3 (GH-1363) (#3446)Christian Heimes2017-09-081-0/+13
* [2.7] bpo-28958: Improve SSLContext error reporting. (GH-3414) (#3433)Christian Heimes2017-09-071-2/+1
* Merge branch 'release-2.7.14' into 2.7Benjamin Peterson2017-09-0619-58/+581
|\
| * bpo-31170: Update libexpat from 2.2.3 to 2.2.4 (#3315)Victor Stinner2017-09-0619-58/+581
* | bpo-31339: Rewrite time.asctime() and time.ctime() (#3293)Victor Stinner2017-09-051-18/+116
* | [2.7] bpo-30502: Fix handling of long oids in ssl. (GH-2909). (#3322)Christian Heimes2017-09-051-41/+48
* | [2.7] bpo-30102: Call OPENSSL_add_all_algorithms_noconf (GH-3112) (#3343)Christian Heimes2017-09-052-2/+9
* | [2.7] bpo-31343: Include sys/sysmacros.h (GH-3318) (#3345)Christian Heimes2017-09-051-0/+5
* | [2.7] bpo-30622: Change NPN detection: (GH-2079) (#3316)Christian Heimes2017-09-041-7/+9
* | bpo-31095: Fix potential crash during GC (GH-3197)INADA Naoki2017-09-045-2/+12
* | [2.7] bpo-10746: Fix ctypes PEP 3118 type codes for c_long, c_bool, c_int (GH...Pauli Virtanen2017-09-021-2/+73
* | [2.7] bpo-31243: Fixed PyArg_ParseTuple failure checks. (GH-3171) (#3235)Oren Milman2017-08-292-10/+19
* | [2.7] bpo-28261: Prevent raising SystemError where PyArg_ParseTuple is used t...Oren Milman2017-08-261-2/+12
|/
* bpo-30947: Update libexpat from 2.2.1 to 2.2.3 (#3106) (#3145)Victor Stinner2017-08-187-102/+709
* bpo-31173: Rewrite WSTOPSIG test of test_subprocess (#3055) (#3071)Victor Stinner2017-08-111-0/+22
* [2.7] bpo-30797: Avoid _GNU_SOURCE redefined warning in xmlparse.c (GH-2670) ...Segev Finer2017-07-111-1/+1
* [2.7] bpo-29854: Fix segfault in call_readline() (GH-728)Nir Soffer2017-07-101-4/+6
* [2.7] bpo-30807: signal.setitimer() may disable the timer by mistake (GH-2493...Antoine Pitrou2017-06-301-0/+4
* bpo-30764: Windows support.SuppressCrashReport (#2423)Victor Stinner2017-06-271-0/+51
* [2.7] bpo-30746: Prohibited the '=' character in environment variable names (...Serhiy Storchaka2017-06-251-0/+19
* [2.7] bpo-30730: Prevent environment variables injection in subprocess on Win...Serhiy Storchaka2017-06-241-0/+6