diff options
author | Georg Brandl <georg@python.org> | 2016-02-25 19:17:45 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2016-02-25 19:17:45 (GMT) |
commit | 8c16cb9f65bfc7d732bc6bd3f533856795a95690 (patch) | |
tree | ee95fd5346ec40c976a07ffce0348d56180d8251 /Doc/library/socket.rst | |
parent | 2305b3cde3406f3a0ee7ff8c858bce5d372c77ae (diff) | |
download | cpython-8c16cb9f65bfc7d732bc6bd3f533856795a95690.zip cpython-8c16cb9f65bfc7d732bc6bd3f533856795a95690.tar.gz cpython-8c16cb9f65bfc7d732bc6bd3f533856795a95690.tar.bz2 |
Closes #26435: fix syntax in directives. Thanks to Jakub Stasiak.
Diffstat (limited to 'Doc/library/socket.rst')
-rw-r--r-- | Doc/library/socket.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/socket.rst b/Doc/library/socket.rst index a0b02c0..863cb07 100644 --- a/Doc/library/socket.rst +++ b/Doc/library/socket.rst @@ -675,7 +675,7 @@ The :mod:`socket` module also offers various network-related services: support IPv6, and :func:`inet_ntop` should be used instead for IPv4/v6 dual stack support. - .. versionchanged: 3.5 + .. versionchanged:: 3.5 Writable :term:`bytes-like object` is now accepted. @@ -717,7 +717,7 @@ The :mod:`socket` module also offers various network-related services: .. versionchanged:: 3.4 Windows support added - .. versionchanged: 3.5 + .. versionchanged:: 3.5 Writable :term:`bytes-like object` is now accepted. @@ -1332,7 +1332,7 @@ to sockets. ensure that the bytestring contains the proper bits (see the optional built-in module :mod:`struct` for a way to encode C structures as bytestrings). - .. versionchanged: 3.5 + .. versionchanged:: 3.5 Writable :term:`bytes-like object` is now accepted. |