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

bcannon at users.sourceforge.net bcannon at users.sourceforge.net
Mon Aug 4 21:51:26 EDT 2003


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

Modified Files:
	libsocket.tex 
Log Message:
Add note about fileno not being usable as a normal file descriptor in Windows.

Index: libsocket.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libsocket.tex,v
retrieving revision 1.76
retrieving revision 1.77
diff -C2 -d -r1.76 -r1.77
*** libsocket.tex	20 Jul 2003 01:10:15 -0000	1.76
--- libsocket.tex	5 Aug 2003 03:51:24 -0000	1.77
***************
*** 481,484 ****
--- 481,488 ----
  Return the socket's file descriptor (a small integer).  This is useful
  with \function{select.select()}.
+ 
+ Under Windows the small integer returned by this method cannot be used where
+ a file descriptor can be used (such as \function{os.fdopen()}).  \UNIX{} does
+ not have this limitation.
  \end{methoddesc}
  





More information about the Python-checkins mailing list