summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* bpo-11063: Fix _uuid module on macOS (#3855)Victor Stinner2017-10-021-1/+29
* bpo-31602: Fix an assertion failure in zipimporter.get_source() in case of a ...Oren Milman2017-09-291-0/+8
* remove support for BSD/OS (closes bpo-31624) (#3812)Benjamin Peterson2017-09-291-1/+1
* bpo-11063, bpo-20519: avoid ctypes and improve import time for uuid (#3796)Antoine Pitrou2017-09-281-0/+35
* bpo-31478: Fix an assertion failure in random.seed() in case a seed has a bad...Oren Milman2017-09-281-2/+5
* bpo-31586: Use _count_element fast path for real dicts.Oren Milman2017-09-271-1/+3
* bpo-30347: Stop crashes when concurrently iterate over itertools.groupby() it...Serhiy Storchaka2017-09-261-36/+31
* bpo-27385: Clarify docstring for groupby() (#3738)Raymond Hettinger2017-09-251-2/+3
* bpo-31311: Fix a SystemError and a crash in ctypes._CData.__setstate__(), in ...Oren Milman2017-09-251-0/+10
* remove configure check for memmove (#3716)Benjamin Peterson2017-09-241-0/+2
* bpo-30346: An iterator produced by the itertools.groupby() iterator (#1569)Serhiy Storchaka2017-09-241-0/+8
* bpo-31311: Impove error reporting in case the first argument to PyCData_setst...Oren Milman2017-09-241-1/+4
* bpo-31505: Fix an assertion failure in json, in case _json.make_encoder() rec...Oren Milman2017-09-241-3/+13
* bpo-25359: Add missed "goto error" after setting an exception. (#3712)Serhiy Storchaka2017-09-231-0/+1
* sqlite: delete some bsddb cargo-culted code to work around Python 2.3/2.4 bugsBenjamin Peterson2017-09-231-15/+0
* bpo-17852: Maintain a list of BufferedWriter objects. Flush them on exit. (#...Neil Schemenauer2017-09-223-1/+54
* bpo-31443: Formulate the type slot initialization rules in terms of C99. (#3688)Stefan Krah2017-09-221-5/+13
* bpo-27541: Reprs of subclasses of some classes now contain actual type name. ...Serhiy Storchaka2017-09-213-12/+24
* bpo-31532: Fix memory corruption due to allocator mix (#3679)nurelin2017-09-211-1/+1
* closes bpo-31525: require sqlite3_prepare_v2 (#3666)Benjamin Peterson2017-09-206-135/+43
* bpo-31293: Fix crashes in truediv and mul of a timedelta by a float with a ba...Oren Milman2017-09-191-4/+33
* bpo-31499, xml.etree: Fix xmlparser_gc_clear() crash (#3641)Victor Stinner2017-09-181-1/+5
* bpo-31497: Add private helper _PyType_Name(). (#3630)Serhiy Storchaka2017-09-172-8/+6
* bpo-31490: Fix an assertion failure in ctypes in case an _anonymous_ attr is ...Oren Milman2017-09-171-1/+9
* bpo-28411: Support other mappings in PyInterpreterState.modules. (#3593)Eric Snow2017-09-152-47/+70
* bpo-31431: SSLContext.check_hostname auto-sets CERT_REQUIRED (#3531)Christian Heimes2017-09-151-4/+4
* bpo-31338 (#3374)Barry Warsaw2017-09-154-7/+4
* bpo-31455: Fix an assertion failure in ElementTree.XMLParser(). (#3545)scoder2017-09-141-2/+33
* bpo-31471: Fix assertion failure in subprocess.Popen() on Windows, in case en...Oren Milman2017-09-141-1/+5
* _ssl_: Fix compiler warning (#3559)Victor Stinner2017-09-141-1/+1
* bpo-31404: Revert "remove modules from Py_InterpreterState (#1638)" (#3565)Eric Snow2017-09-142-4/+18
* bpo-31462: Remove trailing whitespaces. (#3564)Serhiy Storchaka2017-09-142-2/+2
* bpo-30246: fix several error messages which only mention bytes in struct (#1421)Xiang Zhang2017-09-141-4/+5
* bpo-31428: Prevent raising a SystemError in case the memo arg of ElementTree....Oren Milman2017-09-122-5/+24
* bpo-30860: Move windows.h include out of internal/*.h. (#3458)Eric Snow2017-09-122-2/+2
* Remove a null statement that was necessary for --without-threads (#3478)Zackery Spytz2017-09-111-1/+0
* bpo-31406: Fix crash due to lack of type checking in subclassing. (#3477)Stefan Krah2017-09-101-5/+14
* bpo-31403: Remove WITHOUT_THREADS from _decimal. (#3474)Stefan Krah2017-09-092-113/+16
* bpo-31400: Improve SSL error handling on Windows (#3463)Steve Dower2017-09-081-10/+48
* bpo-28182: restore backwards compatibility (#3464)Christian Heimes2017-09-081-0/+5
* bpo-28182: Expose OpenSSL verification results (#3412)Christian Heimes2017-09-081-17/+91
* bpo-31393: Fix the use of PyUnicode_READY(). (#3451)Serhiy Storchaka2017-09-081-1/+4
* bpo-30860: Consolidate stateful runtime globals. (#3397)Eric Snow2017-09-089-227/+126
* bpo-29136: Add TLS 1.3 cipher suites and OP_NO_TLSv1_3 (#1363)Christian Heimes2017-09-081-0/+13
* bpo-28958: Improve SSLContext error reporting. (#3414)Christian Heimes2017-09-071-2/+1
* bpo-31370: Remove support for threads-less builds (#3385)Antoine Pitrou2017-09-0727-455/+38
* Avoid UB in test selection macro. (#3407)Devin Jeanpierre2017-09-071-5/+3
* bpo-31358: Pull zlib out of the repository (GH-3375)Zachary Ware2017-09-0742-20508/+0
* bpo-27584: New addition of vSockets to the python socket module (#2489)caavery2017-09-062-2/+100
* bpo-29505: Add fuzz tests for float(str), int(str), unicode(str) (#2878)Devin Jeanpierre2017-09-064-0/+222