summaryrefslogtreecommitdiff
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
...
* 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
* bpo-31544: Fix a reference leak to 'self' after the previous target error han...scoder2018-03-311-6/+21
* [2.7] bpo-33127: Compatibility patch for LibreSSL 2.7.0 (GH-6210) (GH-6215)Christian Heimes2018-03-241-8/+16
* bpo-31544: Avoid calling "PyObject_GetAttrString()" (and potentially executin...scoder2018-03-241-2/+33
* Fix typos in mmap() error messages (GH-6173)Miss Islington (bot)2018-03-201-2/+2
* [2.7] bpo-32903: Fix a memory leak in os.chdir() on Windows (GH-5801). (#5947)Alexey Izbyshev2018-03-011-7/+8
* [2.7] bpo-30622: Fix NPN for OpenSSL 1.1.1-pre1 (GH-5876) (#5882)Christian Heimes2018-02-251-21/+26
* Fix ssl module, Python 2.7 doesn't have Py_MAX (#5878)Christian Heimes2018-02-251-1/+2
* [2.7] bpo-30622: Improve NPN support detection (GH-5859) (#5863)Christian Heimes2018-02-251-7/+20
* [2.7] bpo-32185: Don't send IP in SNI TLS extension (GH-5865) (#5871)Miss Islington (bot)2018-02-251-2/+40
* bpo-25404: SSLContext.load_dh_params() non-ASCII path (GH-3459)Christian Heimes2018-02-251-4/+17
* Update comment in posixmodule.c (GH-5681)Miss Islington (bot)2018-02-141-1/+1
* 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-061-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-131-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(...Serhiy Storchaka2017-10-041-2/+10
* [2.7] bpo-31478: Prevent unwanted behavior in _random.Random.seed() in case t...Oren Milman2017-10-031-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-1310-35/+27
* [2.7] bpo-29136: Add TLS 1.3 cipher suites and OP_NO_TLSv1_3 (GH-1363) (#3446)Christian Heimes2017-09-071-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-0519-58/+581
|\
| * bpo-31170: Update libexpat from 2.2.3 to 2.2.4 (#3315)Victor Stinner2017-09-0519-58/+581
* | bpo-31339: Rewrite time.asctime() and time.ctime() (#3293)Victor Stinner2017-09-061-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