summaryrefslogtreecommitdiffstats
path: root/Lib/socket.py
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2009-06-02 07:40:15 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2009-06-02 07:40:15 (GMT)
commit36c8084233116a998a756aa91a7f65a6f498b1c1 (patch)
treec00dbbe40c40ef85aa6988d7876904fedd5cab28 /Lib/socket.py
parenta241917e3f12fa3c3e3a6282601896b3fcf66f12 (diff)
downloadcpython-36c8084233116a998a756aa91a7f65a6f498b1c1.zip
cpython-36c8084233116a998a756aa91a7f65a6f498b1c1.tar.gz
cpython-36c8084233116a998a756aa91a7f65a6f498b1c1.tar.bz2
Merged revisions 73138 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r73138 | mark.dickinson | 2009-06-02 08:39:26 +0100 (Tue, 02 Jun 2009) | 1 line Typo in socket.py. Thanks Pablo Torres Navarrete. ........
Diffstat (limited to 'Lib/socket.py')
-rw-r--r--Lib/socket.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/socket.py b/Lib/socket.py
index 7b37e90..d2988ae 100644
--- a/Lib/socket.py
+++ b/Lib/socket.py
@@ -16,7 +16,7 @@ gethostname() -- return the current hostname
gethostbyname() -- map a hostname to its IP number
gethostbyaddr() -- map an IP number or hostname to DNS info
getservbyname() -- map a service name and a protocol name to a port number
-getprotobyname() -- mape a protocol name (e.g. 'tcp') to a number
+getprotobyname() -- map a protocol name (e.g. 'tcp') to a number
ntohs(), ntohl() -- convert 16, 32 bit int from network to host byte order
htons(), htonl() -- convert 16, 32 bit int from host to network byte order
inet_aton() -- convert IP addr string (123.45.67.89) to 32-bit packed format