[Python-checkins] python/dist/src/Doc/lib libsocket.tex,1.77,1.78

loewis at users.sourceforge.net loewis at users.sourceforge.net
Thu Nov 27 14:40:24 EST 2003


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory sc8-pr-cvs1:/tmp/cvs-serv3034/Doc/lib

Modified Files:
	libsocket.tex 
Log Message:
Patch #849595: Add socket.shutdown() constants.


Index: libsocket.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libsocket.tex,v
retrieving revision 1.77
retrieving revision 1.78
diff -C2 -d -r1.77 -r1.78
*** libsocket.tex	5 Aug 2003 03:51:24 -0000	1.77
--- libsocket.tex	27 Nov 2003 19:40:21 -0000	1.78
***************
*** 639,644 ****
  \begin{methoddesc}[socket]{shutdown}{how}
  Shut down one or both halves of the connection.  If \var{how} is
! \code{0}, further receives are disallowed.  If \var{how} is \code{1},
! further sends are disallowed.  If \var{how} is \code{2}, further sends
  and receives are disallowed.
  \end{methoddesc}
--- 639,644 ----
  \begin{methoddesc}[socket]{shutdown}{how}
  Shut down one or both halves of the connection.  If \var{how} is
! \constant{SHUT_RD}, further receives are disallowed.  If \var{how} is \constant{SHUT_WR},
! further sends are disallowed.  If \var{how} is \constant{SHUT_RDWR}, further sends
  and receives are disallowed.
  \end{methoddesc}





More information about the Python-checkins mailing list