summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
...
* bpo-33001: Prevent buffer overrun in os.symlink (GH-5989)Miss Islington (bot)2018-03-051-28/+38
* bpo-32903: Fix a memory leak in os.chdir() on Windows (GH-5801) (#5945)Miss Islington (bot)2018-03-011-7/+7
* bpo-31453: Add setter for min/max protocol version (GH-5259)Miss Islington (bot)2018-02-271-22/+212
* bpo-32947: OpenSSL 1.1.1-pre1 / TLS 1.3 fixes (GH-5663)Miss Islington (bot)2018-02-271-0/+4
* bpo-32394: Remove some TCP options on old version Windows. (GH-5523)Miss Islington (bot)2018-02-261-0/+70
* bpo-32922: dbm.open() now encodes filename with the filesystem encoding. (GH-...Miss Islington (bot)2018-02-264-18/+45
* bpo-32622: Native sendfile on windows (GH-5565)Miss Islington (bot)2018-02-251-2/+62
* [3.7] bpo-30622: Fix NPN for OpenSSL 1.1.1-pre1 (GH-5876) (#5880)Miss Islington (bot)2018-02-252-25/+30
* bpo-17232: Clarify docs for -O and -OO command line options (GH-5839)Miss Islington (bot)2018-02-251-2/+4
* [3.7] bpo-30622: Improve NPN support detection (GH-5859) (#5860)Miss Islington (bot)2018-02-242-11/+24
* [3.7] bpo-24334: Cleanup SSLSocket (GH-5252) (#5857)Miss Islington (bot)2018-02-242-63/+113
* bpo-31966: Fixed WindowsConsoleIO.write() for writing empty data. (GH-5754)Miss Islington (bot)2018-02-241-0/+3
* [bpo-28414] Make all hostnames in SSL module IDN A-labels (GH-5128) (GH-5843)Miss Islington (bot)2018-02-242-68/+78
* Test that new_timezone can return the UTC singleton (gh-5318) (#5819)Miss Islington (bot)2018-02-221-0/+24
* bpo-32556: nt._getfinalpathname, nt._getvolumepathname and nt._getdiskusage n...Miss Islington (bot)2018-02-222-48/+72
* bpo-32604: Swap threads only if the interpreter is different. (gh-5783)Miss Islington (bot)2018-02-211-8/+14
* closes bpo-32859: Don't retry dup3() if it is not available at runtime (GH-5708)Miss Islington (bot)2018-02-201-1/+1
* bpo-25988: Emit a warning when use or import ABCs from 'collections'. (GH-5734)Ivan Levkivskyi2018-02-181-1/+5
* bpo-31333: Re-implement ABCMeta in C (GH-5733)Ivan Levkivskyi2018-02-183-0/+985
* bpo-32604: Clean up created subinterpreters before runtime finalization. (gh-...Miss Islington (bot)2018-02-171-21/+276
* Update comment in posixmodule.c (GH-5681)Miss Islington (bot)2018-02-141-1/+1
* bpo-31787: Prevent refleaks when calling __init__() more than once (GH-3995)Miss Islington (bot)2018-02-134-13/+23
* bpo-29248: Fix os.readlink() on Windows (GH-5577)Miss Islington (bot)2018-02-121-3/+3
* bpo-32221: makeipaddr(): remove interface part + speedup (GH-5449) (GH-5449) ...Miss Islington (bot)2018-02-121-28/+31
* Fix some warnings produced by different compilers. (GH-5593) (GH-5600)Miss Islington (bot)2018-02-093-2/+14
* bpo-32777: Fix _Py_set_inheritable async-safety in subprocess (GH-5560) (GH-5...Miss Islington (bot)2018-02-061-4/+4
* [3.7] bpo-32746: Fix multiple typos (GH-5144) (GH-5520)Miss Islington (bot)2018-02-046-6/+6
* bpo-32604: Fix memory leaks in the new _xxsubinterpreters module. (GH-5507)Miss Islington (bot)2018-02-031-268/+596
* Revert "bpo-31356: Add context manager to temporarily disable GC GH-5495 (#5496)Miss Islington (bot)2018-02-021-106/+0
* bpo-28914: Fix compilation of select on Android (#5447)Victor Stinner2018-01-301-0/+3
* bpo-32681: Fix an uninitialized variable in the C implementation of os.dup2 (...Stéphane Wirtel2018-01-301-1/+1
* bpo-32604: NULL-terminate kwlist in channel_drop_interpreter(). (gh-5437)Eric Snow2018-01-301-1/+1
* bpo-32604: Expose the subinterpreters C-API in a "private" stdlib module. (gh...Eric Snow2018-01-301-0/+2061
* bpo-28134: Auto-detect socket values from file descriptor (#1349)Christian Heimes2018-01-291-2/+69
* bpo-31356: Add context manager to temporarily disable GC (GH-4224)Pablo Galindo2018-01-291-0/+106
* bpo-20104: Fix leaks and errors in new os.posix_spawn (GH-5418)Pablo Galindo2018-01-291-52/+66
* rename _imp initialization function to follow conventions (#5432)Benjamin Peterson2018-01-291-2/+2
* bpo-31429: Define TLS cipher suite on build time (#3532)Christian Heimes2018-01-291-1/+34
* bpo-32705: Current Android does not have posix_spawn (#5413)Chih-Hsuan Yen2018-01-291-0/+7
* bpo-20104: Expose `posix_spawn` in the os module (GH-5109)Pablo Galindo2018-01-292-2/+254
* bpo-32373: Add socket.getblocking() method. (#4926)Yury Selivanov2018-01-281-1/+48
* Revert "bpo-32221: makeipaddr(): remove interface part + speedup (GH-4724)" (...Yury Selivanov2018-01-281-31/+28
* bpo-32228: Reset raw_pos after unwinding the raw stream (#4858)Nitish Chandra2018-01-281-4/+10
* bpo-32660: Solaris should support constants like termios' FIONREAD (#5328)jcea2018-01-281-0/+6
* bpo-32659: Solaris "stat" should support "st_fstype" (#5307)jcea2018-01-281-0/+17
* bpo-32221: makeipaddr(): remove interface part + speedup (GH-4724)Коренберг Марк2018-01-271-28/+31
* bpo-32622: Implement loop.sendfile() (#5271)Andrew Svetlov2018-01-271-0/+1
* bpo-32630: Use contextvars in decimal (GH-5278)Yury Selivanov2018-01-271-89/+31
* bpo-31368: Expose preadv and pwritev in the os module (#5239)Pablo Galindo2018-01-272-1/+313
* bpo-31399: Let OpenSSL verify hostname and IP address (#3462)Christian Heimes2018-01-271-32/+140