[Python-checkins] CVS: python/dist/src/Lib socket.py,1.4,1.5

Martin v. Löwis python-dev@python.org
Sat, 30 Sep 2000 04:34:34 -0700


Update of /cvsroot/python/python/dist/src/Lib
In directory slayer.i.sourceforge.net:/tmp/cvs-serv20621

Modified Files:
	socket.py 
Log Message:
Mention in the module's doc string that other functions of the socket API
appear as methods on socket objects.


Index: socket.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/socket.py,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** socket.py	2000/09/19 11:25:58	1.4
--- socket.py	2000/09/30 11:34:30	1.5
***************
*** 5,9 ****
  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.
  
  Functions:
--- 5,10 ----
  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. Functions specific for a 
! socket are available as methods of the socket object.
  
  Functions: