[Python-checkins] CVS: python/dist/src/Doc/lib internet.tex,1.2,1.2.4.1 libsocket.tex,1.39.2.2,1.39.2.3

Fred L. Drake fdrake@weyr.cnri.reston.va.us
Mon, 21 Feb 2000 11:19:46 -0500 (EST)


Update of /projects/cvsroot/python/dist/src/Doc/lib
In directory weyr:/home/fdrake/projects/python/Doc-152p1/lib

Modified Files:
      Tag: release152p1-patches
	internet.tex libsocket.tex 
Log Message:

Update the platform dependence notes regarding the socket module; this is
supported on more platforms than Unix!  Based on comments from 
Jack Jansen <jack@oratrix.nl>.


Index: internet.tex
===================================================================
RCS file: /projects/cvsroot/python/dist/src/Doc/lib/internet.tex,v
retrieving revision 1.2
retrieving revision 1.2.4.1
diff -C2 -r1.2 -r1.2.4.1
*** internet.tex	1999/04/22 16:03:30	1.2
--- internet.tex	2000/02/21 16:19:43	1.2.4.1
***************
*** 7,13 ****
  The modules described in this chapter implement Internet protocols and 
  support for related technology.  They are all implemented in Python.
! Some of these modules require the presence of the system-dependent
! module \refmodule{socket}\refbimodindex{socket}, which is currently only
! fully supported on \UNIX{} and Windows NT.  Here is an overview:
  
  \localmoduletable
--- 7,13 ----
  The modules described in this chapter implement Internet protocols and 
  support for related technology.  They are all implemented in Python.
! Most of these modules require the presence of the system-dependent
! module \refmodule{socket}\refbimodindex{socket}, which is currently
! supported on most popular platforms.  Here is an overview:
  
  \localmoduletable

Index: libsocket.tex
===================================================================
RCS file: /projects/cvsroot/python/dist/src/Doc/lib/libsocket.tex,v
retrieving revision 1.39.2.2
retrieving revision 1.39.2.3
diff -C2 -r1.39.2.2 -r1.39.2.3
*** libsocket.tex	1999/09/16 15:52:19	1.39.2.2
--- libsocket.tex	2000/02/21 16:19:43	1.39.2.3
***************
*** 7,11 ****
  
  This module provides access to the BSD \emph{socket} interface.
! It is available on \UNIX{} systems that support this interface.
  
  For an introduction to socket programming (in C), see the following
--- 7,12 ----
  
  This module provides access to the BSD \emph{socket} interface.
! It is available on all modern \UNIX{} systems, Windows, MacOS, BeOS,
! OS/2, and probably additional platforms.
  
  For an introduction to socket programming (in C), see the following
***************
*** 14,20 ****
  Communication Tutorial}, by Samuel J.  Leffler et al, both in the
  \UNIX{} Programmer's Manual, Supplementary Documents 1 (sections PS1:7
! and PS1:8).  The \UNIX{} manual pages for the various socket-related
! system calls are also a valuable source of information on the details of
! socket semantics.
  
  The Python interface is a straightforward transliteration of the
--- 15,22 ----
  Communication Tutorial}, by Samuel J.  Leffler et al, both in the
  \UNIX{} Programmer's Manual, Supplementary Documents 1 (sections PS1:7
! and PS1:8).  The platform-specific reference material for the various
! socket-related system calls are also a valuable source of information
! on the details of socket semantics.  For \UNIX, refer to the manual
! pages; for Windows, see the WinSock (or Winsock 2) specification.
  
  The Python interface is a straightforward transliteration of the