[Python-checkins] CVS: python/dist/src/Doc/lib libsocket.tex,1.45,1.46

Fred L. Drake python-dev@python.org
Thu, 6 Jul 2000 11:37:10 -0700


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory slayer.i.sourceforge.net:/tmp/cvs-serv3911/lib

Modified Files:
	libsocket.tex 
Log Message:

Clean up markup to be more like recommended practice; only small changes
needed.


Index: libsocket.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libsocket.tex,v
retrieving revision 1.45
retrieving revision 1.46
diff -C2 -r1.45 -r1.46
*** libsocket.tex	2000/06/30 04:21:41	1.45
--- libsocket.tex	2000/07/06 18:37:08	1.46
***************
*** 231,234 ****
--- 231,240 ----
  \end{datadesc}
  
+ 
+ \begin{seealso}
+   \seemodule{SocketServer}{Classes that simplify writing network servers.}
+ \end{seealso}
+ 
+ 
  \subsection{Socket Objects \label{socket-objects}}
  
***************
*** 394,400 ****
  instead.
  
- \subsection{Example}
- \nodename{Socket Example}
  
  Here are two minimal example programs using the TCP/IP protocol:\ a
  server that echoes all data that it receives back (servicing only one
--- 400,406 ----
  instead.
  
  
+ \subsection{Example \label{socket-example}}
+ 
  Here are two minimal example programs using the TCP/IP protocol:\ a
  server that echoes all data that it receives back (servicing only one
***************
*** 437,442 ****
  print 'Received', `data`
  \end{verbatim}
- 
- \begin{seealso}
-   \seemodule{SocketServer}{classes that simplify writing network servers}
- \end{seealso}
--- 443,444 ----