]> granicus.if.org Git - python/commitdiff
Issue #6774: Back out c8b77efe8b56, which only brings confusion.
authorCharles-François Natali <neologix@free.fr>
Sun, 29 Jan 2012 15:42:54 +0000 (16:42 +0100)
committerCharles-François Natali <neologix@free.fr>
Sun, 29 Jan 2012 15:42:54 +0000 (16:42 +0100)
Doc/library/socket.rst

index a8d3b93dc230498d2ef8fa1569a2cdd993752fa7..cb2ab23abff6042b865c3afa7397e42eda321ff8 100644 (file)
@@ -1071,9 +1071,7 @@ correspond to Unix system calls applicable to sockets.
    Shut down one or both halves of the connection.  If *how* is :const:`SHUT_RD`,
    further receives are disallowed.  If *how* is :const:`SHUT_WR`, further sends
    are disallowed.  If *how* is :const:`SHUT_RDWR`, further sends and receives are
-   disallowed.  Depending on the platform, shutting down one half of the connection
-   can also close the opposite half (e.g. on Mac OS X, ``shutdown(SHUT_WR)`` does
-   not allow further reads on the other end of the connection).
+   disallowed.
 
 Note that there are no methods :meth:`read` or :meth:`write`; use
 :meth:`~socket.recv` and :meth:`~socket.send` without *flags* argument instead.