diff options
author | Skip Montanaro <skip@pobox.com> | 2003-03-30 04:54:24 (GMT) |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2003-03-30 04:54:24 (GMT) |
commit | 89feabc7f5308e3190909f47fce225df28a65062 (patch) | |
tree | ad1126c669f70a2138f8449453426d298d439a3c /Misc/NEWS | |
parent | a942b9931c9ef13f7baf82c12e4ee312e6906f1c (diff) | |
download | cpython-89feabc7f5308e3190909f47fce225df28a65062.zip cpython-89feabc7f5308e3190909f47fce225df28a65062.tar.gz cpython-89feabc7f5308e3190909f47fce225df28a65062.tar.bz2 |
The socket module now always uses the _socketobject wrapper class, even on
platforms which have dup(2). The makefile() method is built directly on top
of the socket without duplicating the file descriptor, allowing timeouts to
work properly. Includes a new test case (urllibnet) which requires the
network resource.
Closes bug 707074.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -59,6 +59,11 @@ Extension modules Subsumed the times() function into repeat(). Added chain() and cycle(). +- The socket module now always uses the _socketobject wrapper class, even on + platforms which have dup(2). The makefile() method is built directly + on top of the socket without duplicating the file descriptor, allowing + timeouts to work properly. + Library ------- |