diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2000-09-30 11:34:30 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2000-09-30 11:34:30 (GMT) |
commit | af484d5a0cee122f0355bcd33f8bb5c0b6d50657 (patch) | |
tree | a21bf18ac1144a9f45f38bf79a5abd46dbc1af03 /Lib/socket.py | |
parent | 58295dedf7e0ae7402ba5a3bd381a9f69ec5a20f (diff) | |
download | cpython-af484d5a0cee122f0355bcd33f8bb5c0b6d50657.zip cpython-af484d5a0cee122f0355bcd33f8bb5c0b6d50657.tar.gz cpython-af484d5a0cee122f0355bcd33f8bb5c0b6d50657.tar.bz2 |
Mention in the module's doc string that other functions of the socket API
appear as methods on socket objects.
Diffstat (limited to 'Lib/socket.py')
-rw-r--r-- | Lib/socket.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/socket.py b/Lib/socket.py index 7658c07..10227aa 100644 --- a/Lib/socket.py +++ b/Lib/socket.py @@ -4,7 +4,8 @@ """\ This module provides socket operations and some related functions. On Unix, it supports IP (Internet Protocol) and Unix domain sockets. -On other systems, it only supports IP. +On other systems, it only supports IP. Functions specific for a +socket are available as methods of the socket object. Functions: |