diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-10-14 15:05:38 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-10-14 15:05:38 (GMT) |
commit | b1c54967381062bccef7db574b8e84f48a0eca76 (patch) | |
tree | 61af78425836dcb0891283994152df9c0e1b6556 /Misc | |
parent | f4061dac607d9bc2b3af0b72da5e8917428d869e (diff) | |
download | cpython-b1c54967381062bccef7db574b8e84f48a0eca76.zip cpython-b1c54967381062bccef7db574b8e84f48a0eca76.tar.gz cpython-b1c54967381062bccef7db574b8e84f48a0eca76.tar.bz2 |
Issue #7523: Add SOCK_CLOEXEC and SOCK_NONBLOCK to the socket module,
where supported by the system. Patch by Nikita Vetoshkin.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS | 6 |
2 files changed, 5 insertions, 2 deletions
@@ -846,6 +846,7 @@ Alexandre Vassalotti Frank Vercruesse Mike Verdone Jaap Vermeulen +Nikita Vetoshkin Al Vezza Jacques A. Vidrine John Viega @@ -21,12 +21,14 @@ Core and Builtins Library ------- -- Issue #Issue10063: file:// scheme will stop accessing remote hosts via ftp +- Issue #7523: Add SOCK_CLOEXEC and SOCK_NONBLOCK to the socket module, + where supported by the system. Patch by Nikita Vetoshkin. + +- Issue #10063: file:// scheme will stop accessing remote hosts via ftp protocol. file:// urls had fallback to access remote hosts via ftp. This was not correct, change is made to raise a URLError when a remote host is tried to access via file:// scheme. - - Issue #1710703: Write structures for an empty ZIP archive when a ZipFile is created in modes 'a' or 'w' and then closed without adding any files. Raise BadZipfile (rather than IOError) when opening small non-ZIP files. |