summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* [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
* [2.7] bpo-30694: Upgrade Modules/expat/ to libexpat 2.2.1 (#2300) (#2312)Victor Stinner2017-06-218-158/+889
* bpo-29591: Upgrade Modules/expat to libexpat 2.2 (#2164) (#2202)Victor Stinner2017-06-1513-477/+523
* _tkinter: Fix refleak in getint() (#2153)Victor Stinner2017-06-131-2/+6
* bpo-30615: Fix the leak reference in Modules/_elementtree.c (#2129)Stéphane Wirtel2017-06-121-1/+3
* [2.7] bpo-28994: Fixed errors handling in atexit._run_exitfuncs(). (GH-2034) ...Serhiy Storchaka2017-06-121-0/+346
* bpo-30614: testInitNonExistentFile() of test_bz2 leaks references (#2033)Stéphane Wirtel2017-06-101-25/+39
* [2.7] bpo-29960 _random.Random corrupted on exception in setstate(). … (#1289)Mariatta2017-05-271-1/+4
* bpo-30003: Fix handling escape characters in HZ codec (#1720) (#1556)Xiang Zhang2017-05-221-13/+14
* [2.7] bpo-30363: Backport warnings in the re module. (#1577)Serhiy Storchaka2017-05-181-0/+14
* bpo-30365: Backport warnings and fix bugs in ElementTree. (#1581)Serhiy Storchaka2017-05-171-7/+36
* bpo-30242: resolve some undefined behaviours in struct (#1418) (#1588)Xiang Zhang2017-05-151-5/+9
* bpo-11681: Document the `-b` and `-bb` options (GH-1562)Zachary Ware2017-05-131-0/+2
* [2.7] bpo-30283: Backport test_regrtest from master to 2.7 (#1513)Victor Stinner2017-05-091-0/+20
* bpo-29990: Fix range checking in GB18030 decoder (#1509)Xiang Zhang2017-05-091-1/+3
* [2.7] bpo-30243: Fixed the possibility of a crash in _json. (GH-1420) (#1471)Serhiy Storchaka2017-05-051-65/+18
* bpo-30257: _bsddb: Fix newDBObject() (#1428)Victor Stinner2017-05-031-2/+4
* bpo-27593: Get SCM build info from git instead of hg (#1327)Victor Stinner2017-05-021-41/+23
* [2.7] [3.5] bpo-30070: Fixed leaks and crashes in errors handling in the pars...Serhiy Storchaka2017-04-191-32/+73
* [2.7] bpo-30061: Check if PyObject_Size()/PySequence_Size()/PyMapping_Size() ...Serhiy Storchaka2017-04-193-5/+16
* bpo-30074: Fix compile warnings of _PySlice_Unpack and convert missed (#1154)Serhiy Storchaka2017-04-154-10/+9
* bpo-30068: add missing iter(self) in _io._IOBase.readlines when hint is prese...Xiang Zhang2017-04-151-12/+21