diff options
author | Sandro Tosi <sandro.tosi@gmail.com> | 2012-06-13 21:58:35 (GMT) |
---|---|---|
committer | Sandro Tosi <sandro.tosi@gmail.com> | 2012-06-13 21:58:35 (GMT) |
commit | 89539e8268cf5513d1f97a7a4ec254e527f7759d (patch) | |
tree | 652bdc7eb2362922914f8d2c10561e4e29fe9ef2 | |
parent | 926f58df57dc201608b9e7d0e45a34a28fe49535 (diff) | |
download | cpython-89539e8268cf5513d1f97a7a4ec254e527f7759d.zip cpython-89539e8268cf5513d1f97a7a4ec254e527f7759d.tar.gz cpython-89539e8268cf5513d1f97a7a4ec254e527f7759d.tar.bz2 |
Issue #15060: fix typo in socket doc; Patch by anatoly techtonik
-rw-r--r-- | Doc/library/socket.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/socket.rst b/Doc/library/socket.rst index 963a5ac..6d298be 100644 --- a/Doc/library/socket.rst +++ b/Doc/library/socket.rst @@ -38,7 +38,7 @@ Socket addresses are represented as follows: A single string is used for the :const:`AF_UNIX` address family. A pair ``(host, port)`` is used for the :const:`AF_INET` address family, where *host* is a string representing either a hostname in Internet domain notation like ``'daring.cwi.nl'`` or an IPv4 address -like ``'100.50.200.5'``, and *port* is an integral port number. For +like ``'100.50.200.5'``, and *port* is an integer port number. For :const:`AF_INET6` address family, a four-tuple ``(host, port, flowinfo, scopeid)`` is used, where *flowinfo* and *scopeid* represents ``sin6_flowinfo`` and ``sin6_scope_id`` member in :const:`struct sockaddr_in6` in C. For |