summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* bpo-32232: by default, Setup modules are no longer built with -DPy_BUILD_CORE...xdegaye2018-04-202-20/+20
* bpo-33308: Fix a crash in the parser module when convert an ST object. (#6519)Serhiy Storchaka2018-04-181-3/+3
* bpo-33253: Fix xxsubtype.bench() to accept correct str signature. (GH-6439)Devon R2018-04-101-1/+1
* bpo-23403: Bump pickle.DEFAULT_PROTOCOL to 4 (#6355)Łukasz Langa2018-04-042-11/+17
* bpo-33209: End framing at the end of C implementation of pickle.Pickler.dump(...Serhiy Storchaka2018-04-031-2/+3
* Fix duplicating words words. (GH-6296)Serhiy Storchaka2018-03-281-1/+1
* bpo-32844: Fix a subprocess misredirection of a low fd (GH5689)Alexey Izbyshev2018-03-261-1/+1
* Fix error message in sqlite connection thread check. (GH-6028)Takuya Akiba2018-03-261-2/+2
* bpo-33136: Harden ssl module against CVE-2018-8970 (GH-6229)Christian Heimes2018-03-251-3/+4
* bpo-33127: Compatibility patch for LibreSSL 2.7.0 (GH-6210)Christian Heimes2018-03-241-6/+16
* bpo-32999: ast: Convert useless check to assert (GH-6197)INADA Naoki2018-03-231-3/+1
* bpo-32999: Revert GH-6002 (fc7df0e6) (GH-6189)INADA Naoki2018-03-221-24/+11
* bpo-33018: Improve issubclass() error checking and message. (GH-5944)jab2018-03-221-0/+5
* Fix typos in mmap() error messages (GH-6173)Zackery Spytz2018-03-211-2/+2
* bpo-27645: Fix version number in 'database in transaction' fallback (GH-6131)Aviv Palivoda2018-03-181-2/+2
* bpo-32374: m_traverse may be called with m_state=NULL (GH-5140)Marcel Plch2018-03-171-3/+49
* bpo-33021: Fix GCC 7 warning (-Wmaybe-uninitialized) in mmapmodule.c (#6117)Zackery Spytz2018-03-141-1/+1
* signal: add strsignal() (#6017)Antoine Pietri2018-03-122-1/+92
* bpo-33021: Release the GIL during fstat() calls (GH-6019)Nir Soffer2018-03-111-2/+9
* bpo-27645: Add support for native backup facility of SQLite (GH-4238)Emanuele Gaifas2018-03-102-0/+142
* bpo-30249: Improve struct.unpack_from() error messages (GH-6059)Xiang Zhang2018-03-102-8/+32
* bpo-33016: Fix potential use of uninitialized memory in nt._getfinalpathname ...Alexey Izbyshev2018-03-081-42/+32
* bpo-32999: Fix ABC.__subclasscheck__ crash (GH-6002)INADA Naoki2018-03-071-12/+25
* bpo-32969: Expose some missing constants in zlib and fix the doc (GH-5988)Xiang Zhang2018-03-071-3/+18
* bpo-33001: Prevent buffer overrun in os.symlink (GH-5989)Steve Dower2018-03-051-28/+38
* bpo-32903: Fix a memory leak in os.chdir() on Windows (GH-5801)Alexey Izbyshev2018-03-011-7/+7
* bpo-31453: Add setter for min/max protocol version (#5259)Christian Heimes2018-02-271-22/+212
* bpo-32947: OpenSSL 1.1.1-pre1 / TLS 1.3 fixes (#5663)Christian Heimes2018-02-271-0/+4
* bpo-32147: Improved perfomance of binascii.unhexlify(). (GH-4586)Sergey Fedoseev2018-02-261-33/+5
* bpo-32394: Remove some TCP options on old version Windows. (GH-5523)animalize2018-02-261-0/+70
* bpo-32922: dbm.open() now encodes filename with the filesystem encoding. (GH-...Serhiy Storchaka2018-02-264-18/+45
* bpo-32622: Native sendfile on windows (#5565)Andrew Svetlov2018-02-251-2/+62
* bpo-30622: Fix NPN for OpenSSL 1.1.1-pre1 (#5876)Christian Heimes2018-02-252-25/+30
* bpo-17232: Clarify docs for -O and -OO command line options (#5839)Cheryl Sabella2018-02-251-2/+4
* bpo-30622: Improve NPN support detection (#5859)Christian Heimes2018-02-242-11/+24
* bpo-24334: Cleanup SSLSocket (#5252)Christian Heimes2018-02-242-63/+113
* bpo-31966: Fixed WindowsConsoleIO.write() for writing empty data. (GH-5754)Serhiy Storchaka2018-02-241-0/+3
* [bpo-28414] Make all hostnames in SSL module IDN A-labels (GH-5128)Christian Heimes2018-02-242-68/+78
* Test that new_timezone can return the UTC singleton (gh-5318)Paul Ganssle2018-02-221-0/+24
* bpo-32556: nt._getfinalpathname, nt._getvolumepathname and nt._getdiskusage n...Steve Dower2018-02-222-48/+72
* bpo-32604: Swap threads only if the interpreter is different. (gh-5778)Eric Snow2018-02-201-8/+14
* closes bpo-32859: Don't retry dup3() if it is not available at runtime (GH-5708)Alexey Izbyshev2018-02-201-1/+1
* bpo-31333: Re-implement ABCMeta in C (#5273)Ivan Levkivskyi2018-02-183-0/+985
* bpo-32604: Clean up created subinterpreters before runtime finalization. (gh-...Eric Snow2018-02-171-21/+276
* Update comment in posixmodule.c (GH-5681)ngie-eign2018-02-141-1/+1
* bpo-31787: Prevent refleaks when calling __init__() more than once (GH-3995)Oren Milman2018-02-134-13/+23
* bpo-32221: makeipaddr(): remove interface part + speedup (GH-5449) (#5449)Коренберг Марк2018-02-121-28/+31
* bpo-29248: Fix os.readlink() on Windows (GH-5577)SSE42018-02-121-3/+3
* Fix some warnings produced by different compilers. (#5593)Serhiy Storchaka2018-02-093-2/+14
* bpo-32777: Fix _Py_set_inheritable async-safety in subprocess (GH-5560)Alexey Izbyshev2018-02-061-4/+4