diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-09-14 18:00:02 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-09-14 18:00:02 (GMT) |
commit | 9e0b864ac07ab85b618ccf3831eae97b2c91fb2e (patch) | |
tree | 195459e4f65f8d63c3ecd298f6d3790055a73b81 /Doc | |
parent | 38615993b0b13729cc2afaa69686f5bff17547c4 (diff) | |
download | cpython-9e0b864ac07ab85b618ccf3831eae97b2c91fb2e.zip cpython-9e0b864ac07ab85b618ccf3831eae97b2c91fb2e.tar.gz cpython-9e0b864ac07ab85b618ccf3831eae97b2c91fb2e.tar.bz2 |
Issue #1552: socket.socketpair() now returns regular socket.socket
objects supporting the whole socket API (rather than the "raw"
_socket.socket objects).
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/socket.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/library/socket.rst b/Doc/library/socket.rst index a7656c1..c7d7ee3 100644 --- a/Doc/library/socket.rst +++ b/Doc/library/socket.rst @@ -364,6 +364,10 @@ The module :mod:`socket` exports the following constants and functions: if defined on the platform; otherwise, the default is :const:`AF_INET`. Availability: Unix. + .. versionchanged:: 3.2 + The returned socket objects now support the whole socket API, rather + than a subset. + .. function:: fromfd(fd, family, type[, proto]) |