summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* [3.6] bpo-31675: Fix memory leaks in Tkinter's methods splitlist() and split(...Miss Islington (bot)2017-10-031-2/+10
* [3.6] bpo-31673: Fixed typo in the name of Tkinter's method adderrorinfo(). (...Serhiy Storchaka2017-10-032-13/+13
* bpo-28129: fix ctypes crashes (#386) (#3799)Victor Stinner2017-09-282-9/+34
* [3.6] bpo-31478: Fix an assertion failure in random.seed() in case a seed has...Serhiy Storchaka2017-09-281-2/+5
* [3.6] bpo-31505: Fix an assertion failure in json, in case _json.make_encoder...Miss Islington (bot)2017-09-271-3/+13
* [3.6] bpo-31490: Fix an assertion failure in ctypes in case an _anonymous_ at...Miss Islington (bot)2017-09-271-1/+9
* [3.6] bpo-31586: Use _count_element fast path for real dicts. (#3776)Miss Islington (bot)2017-09-271-1/+3
* [3.6] bpo-30347: Stop crashes when concurrently iterate over itertools.groupb...Miss Islington (bot)2017-09-261-36/+31
* [3.6] bpo-31311: Fix a SystemError and a crash in ctypes._CData.__setstate__(...Miss Islington (bot)2017-09-251-0/+10
* [3.6] bpo-27385: Clarify docstring for groupby() (GH-3738) (#3744)Miss Islington (bot)2017-09-251-2/+3
* [3.6] bpo-25359: Add missed "goto error" after setting an exception. (GH-3712...Miss Islington (bot)2017-09-241-0/+1
* [3.6] closes bpo-31532: Fix memory corruption due to allocator mix (GH-3679) ...Miss Islington (bot)2017-09-211-1/+1
* [3.6] bpo-31293: Fix crashes in truediv and mul of a timedelta by a float wit...Miss Islington (bot)2017-09-191-4/+33
* [3.6] bpo-31499, xml.etree: Fix xmlparser_gc_clear() crash (GH-3641) (#3645)Miss Islington (bot)2017-09-181-1/+5
* [3.6] bpo-31455: Fix an assertion failure in ElementTree.XMLParser(). (GH-354...Miss Islington (bot)2017-09-141-2/+33
* [3.6] bpo-31471: Fix assertion failure in subprocess.Popen() on Windows, in c...Miss Islington (bot)2017-09-141-1/+5
* [3.6] _ssl_: Fix compiler warning (GH-3559) (#3569)Christian Heimes2017-09-141-0/+6
* [3.6] bpo-30246: fix several error messages which only mention bytes in struc...Xiang Zhang2017-09-141-4/+5
* [3.6] bpo-30923: Silence fall-through warnings included in -Wextra since gcc-...Victor Stinner2017-09-123-9/+9
* [3.6] bpo-31406: Fix crash due to lack of type checking in subclassing. (GH-3...Miss Islington (bot)2017-09-101-5/+14
* [3.6] bpo-31400: Improve SSL error handling on Windows (GH-3463) (#3466)Christian Heimes2017-09-091-10/+47
* [3.6] bpo-31393: Fix the use of PyUnicode_READY(). (GH-3451). (#3453)Serhiy Storchaka2017-09-081-1/+4
* [3.6] bpo-29136: Add TLS 1.3 cipher suites and OP_NO_TLSv1_3 (GH-1363) (#3444)Christian Heimes2017-09-081-0/+13
* [3.6] bpo-28958: Improve SSLContext error reporting. (GH-3414) (#3432)Christian Heimes2017-09-071-2/+1
* [3.6] bpo-29781: Fix SSLObject.version before handshake (GH-3364) (#3381)Christian Heimes2017-09-061-0/+4
* [3.6] _pickle: Fix whichmodule() (GH-3358) (#3361)Christian Heimes2017-09-061-1/+1
* bpo-31170: Update libexpat from 2.2.3 to 2.2.4 (#3315) (#3350)Victor Stinner2017-09-0519-57/+567
* [3.6] bpo-29334: Fix ssl.getpeercert for auto-handshake (GH-1769) (#1778)Christian Heimes2017-09-051-21/+12
* [3.6] bpo-30502: Fix handling of long oids in ssl. (GH-2909) (#3321)Christian Heimes2017-09-051-43/+47
* [3.6] bpo-30102: Call OPENSSL_add_all_algorithms_noconf (GH-3112) (#3342)Christian Heimes2017-09-052-2/+9
* [3.6] bpo-31343: Include sys/sysmacros.h (GH-3318) (#3344)Christian Heimes2017-09-051-0/+5
* [3.6] bpo-30622: Change NPN detection: (GH-2079) (#3314)Christian Heimes2017-09-052-10/+12
* [3.6] Add missing _sha3 module to Setup.dist (GH-2395) (#3280)Segev Finer2017-09-041-0/+1
* bpo-31095: fix potential crash during GC (GH-3195)INADA Naoki2017-09-047-4/+24
* [3.6] bpo-9146: Raise a ValueError if OpenSSL fails to init a hash func (#3274)Gregory P. Smith2017-09-031-9/+36
* bpo-31185: Fixed miscellaneous errors in asyncio speedup module. (#3076) (#3269)Serhiy Storchaka2017-09-032-217/+217
* bpo-30581: Windows: os.cpu_count() returns wrong number of processors (#2934)...Christopher Wilcox2017-09-011-3/+16
* [3.6] bpo-31291: Fixed an assertion failure in zipimport.zipimporter.get_data...Oren Milman2017-08-301-1/+2
* [3.6] bpo-10746: Fix ctypes PEP 3118 type codes for c_long, c_bool, c_int (GH...Pauli Virtanen2017-08-301-2/+67
* [3.6] bpo-31243: Fixed PyArg_ParseTuple failure checks. (GH-3171) (#3233)Oren Milman2017-08-292-21/+43
* [3.6] bpo-31271: Fix an assertion failure in io.TextIOWrapper.write. (GH-3201...Oren Milman2017-08-261-0/+7
* [3.6] bpo-28261: Prevent raising SystemError where PyArg_ParseTuple is used t...Oren Milman2017-08-262-2/+28
* bpo-28667: Fix a compile warning on FreeBSD when compare with FD_SETSIZE. (#5...Victor Stinner2017-08-221-4/+4
* bpo-30947: Update libexpat from 2.2.1 to 2.2.3 (#3106) (#3143)Victor Stinner2017-08-187-101/+719
* bpo-29619: Do not use HAVE_LARGEFILE_SUPPORT for type conversions (GH-1666) (...Victor Stinner2017-08-171-18/+5
* bpo-31173: Rewrite WSTOPSIG test of test_subprocess (#3055) (#3070)Victor Stinner2017-08-111-0/+21
* [3.6] bpo-30808: Use _Py_atomic API for concurrency-sensitive signal state (G...Antoine Pitrou2017-08-061-18/+20
* bpo-31061: fix crash in asyncio speedup module (GH-2984)INADA Naoki2017-08-021-0/+4
* [3.6] bpo-31018: Switch to GH-pragma pack from __declspec(align) (GH-2848) (#...Segev Finer2017-07-251-1/+4
* bpo-30961: Fix decrementing a borrowed reference in tracemalloc. (#2747) (#2748)Xiang Zhang2017-07-181-2/+1