[Python-checkins] CVS: python/dist/src/Doc/lib libcmd.tex,1.5,1.6 libcurses.tex,1.19,1.20 libdis.tex,1.28,1.29 liberrno.tex,1.10,1.11 libgetopt.tex,1.14,1.15 libimghdr.tex,1.12,1.13 libnew.tex,1.4,1.5 libpprint.tex,1.13,1.14 libqueue.tex,1.10,1.11 libreadline.tex,1.4,1.5 librepr.tex,1.2,1.3 librlcompleter.tex,1.3,1.4 librotor.tex,1.15,1.16 libsignal.tex,1.18,1.19 libsndhdr.tex,1.2,1.3 libsocksvr.tex,1.12,1.13

Fred L. Drake python-dev@python.org
Tue, 10 Oct 2000 10:03:48 -0700


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

Modified Files:
	libcmd.tex libcurses.tex libdis.tex liberrno.tex libgetopt.tex 
	libimghdr.tex libnew.tex libpprint.tex libqueue.tex 
	libreadline.tex librepr.tex librlcompleter.tex librotor.tex 
	libsignal.tex libsndhdr.tex libsocksvr.tex 
Log Message:

Fixed lots of small nits caught by Ka-Ping Yee <ping@lfw.org>.


Index: libcmd.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libcmd.tex,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** libcmd.tex	2000/07/12 02:56:15	1.5
--- libcmd.tex	2000/10/10 17:03:45	1.6
***************
*** 1,9 ****
  \section{\module{cmd} ---
!          Build line-oriented command interpreters.}
  \declaremodule{standard}{cmd}
  \sectionauthor{Eric S. Raymond}{esr@snark.thyrsus.com}
! 
! \modulesynopsis{Build line-oriented command interpreters; this is used
! by module \module{pdb}.}
  
  
--- 1,8 ----
  \section{\module{cmd} ---
!          Support for line-oriented command interpreters}
! 
  \declaremodule{standard}{cmd}
  \sectionauthor{Eric S. Raymond}{esr@snark.thyrsus.com}
! \modulesynopsis{Build line-oriented command interpreters.}
  
  

Index: libcurses.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libcurses.tex,v
retrieving revision 1.19
retrieving revision 1.20
diff -C2 -r1.19 -r1.20
*** libcurses.tex	2000/10/06 20:01:23	1.19
--- libcurses.tex	2000/10/10 17:03:45	1.20
***************
*** 1,9 ****
  \section{\module{curses} ---
!          Screen painting and input handling for character-cell terminals}
  
  \declaremodule{standard}{curses}
  \sectionauthor{Moshe Zadka}{mzadka@geocities.com}
  \sectionauthor{Eric Raymond}{esr@thyrsus.com}
! \modulesynopsis{An interface to the curses library.}
  
  \versionchanged[Added support for the \code{ncurses} library and
--- 1,10 ----
  \section{\module{curses} ---
!          Terminal handling for character-cell displays}
  
  \declaremodule{standard}{curses}
  \sectionauthor{Moshe Zadka}{mzadka@geocities.com}
  \sectionauthor{Eric Raymond}{esr@thyrsus.com}
! \modulesynopsis{An interface to the curses library, providing portable
!                 terminal handling.}
  
  \versionchanged[Added support for the \code{ncurses} library and

Index: libdis.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libdis.tex,v
retrieving revision 1.28
retrieving revision 1.29
diff -C2 -r1.28 -r1.29
*** libdis.tex	2000/09/12 16:23:48	1.28
--- libdis.tex	2000/10/10 17:03:45	1.29
***************
*** 1,7 ****
  \section{\module{dis} ---
!          Disassembler.}
! \declaremodule{standard}{dis}
  
! \modulesynopsis{Disassembler.}
  
  
--- 1,8 ----
  \section{\module{dis} ---
!          Disassembler for Python byte code}
  
! \declaremodule{standard}{dis}
! \modulesynopsis{Disassembler for Python byte code, as stored in code
!                 objects and \file{.pyc}/\file{.pyo} files.}
  
  

Index: liberrno.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/liberrno.tex,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -r1.10 -r1.11
*** liberrno.tex	1998/08/10 19:41:43	1.10
--- liberrno.tex	2000/10/10 17:03:45	1.11
***************
*** 1,11 ****
  \section{\module{errno} ---
!          Standard errno system symbols.}
! \declaremodule{standard}{errno}
  
  \modulesynopsis{Standard errno system symbols.}
  
- 
  
! This module makes available standard errno system symbols.
  The value of each symbol is the corresponding integer value.
  The names and descriptions are borrowed from \file{linux/include/errno.h},
--- 1,10 ----
  \section{\module{errno} ---
!          Standard errno system symbols}
  
+ \declaremodule{standard}{errno}
  \modulesynopsis{Standard errno system symbols.}
  
  
! This module makes available standard \code{errno} system symbols.
  The value of each symbol is the corresponding integer value.
  The names and descriptions are borrowed from \file{linux/include/errno.h},
***************
*** 22,27 ****
  
  Of the following list, symbols that are not used on the current
! platform are not defined by the module.  Symbols available can
! include:
  
  \begin{datadesc}{EPERM} Operation not permitted \end{datadesc}
--- 21,27 ----
  
  Of the following list, symbols that are not used on the current
! platform are not defined by the module.  The specific list of defined
! symbols is available as \code{errno.errorcode.keys()}.  Symbols
! available can include:
  
  \begin{datadesc}{EPERM} Operation not permitted \end{datadesc}

Index: libgetopt.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libgetopt.tex,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -r1.14 -r1.15
*** libgetopt.tex	2000/08/11 19:55:06	1.14
--- libgetopt.tex	2000/10/10 17:03:45	1.15
***************
*** 1,7 ****
  \section{\module{getopt} ---
!          Parser for command line options.}
! \declaremodule{standard}{getopt}
  
! \modulesynopsis{Parser for command line options.}
  
  
--- 1,8 ----
  \section{\module{getopt} ---
!          Parser for command line options}
  
! \declaremodule{standard}{getopt}
! \modulesynopsis{Portable parser for command line options; support both
!                 short and long option names.}
  
  

Index: libimghdr.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libimghdr.tex,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -r1.12 -r1.13
*** libimghdr.tex	1999/01/05 22:54:49	1.12
--- libimghdr.tex	2000/10/10 17:03:45	1.13
***************
*** 1,7 ****
  \section{\module{imghdr} ---
!          Determine the type of an image.}
! \declaremodule{standard}{imghdr}
  
! \modulesynopsis{Determine the type of image contained in a file or byte stream.}
  
  
--- 1,8 ----
  \section{\module{imghdr} ---
!          Determine the type of an image}
  
! \declaremodule{standard}{imghdr}
! \modulesynopsis{Determine the type of image contained in a file or
!                 byte stream.}
  
  

Index: libnew.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libnew.tex,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** libnew.tex	1999/06/29 15:45:09	1.4
--- libnew.tex	2000/10/10 17:03:45	1.5
***************
*** 1,4 ****
  \section{\module{new} ---
!          Runtime implementation object creation}
  
  \declaremodule{builtin}{new}
--- 1,4 ----
  \section{\module{new} ---
!          Creation of runtime internal objects}
  
  \declaremodule{builtin}{new}

Index: libpprint.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libpprint.tex,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -r1.13 -r1.14
*** libpprint.tex	1999/02/18 21:10:32	1.13
--- libpprint.tex	2000/10/10 17:03:45	1.14
***************
*** 1,4 ****
  \section{\module{pprint} ---
!          Data pretty printer.}
  
  \declaremodule{standard}{pprint}
--- 1,4 ----
  \section{\module{pprint} ---
!          Data pretty printer}
  
  \declaremodule{standard}{pprint}

Index: libqueue.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libqueue.tex,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -r1.10 -r1.11
*** libqueue.tex	2000/04/03 20:13:54	1.10
--- libqueue.tex	2000/10/10 17:03:45	1.11
***************
*** 1,8 ****
  \section{\module{Queue} ---
!          A synchronized queue class.}
! \declaremodule{standard}{Queue}
  
  \modulesynopsis{A synchronized queue class.}
- 
  
  
--- 1,7 ----
  \section{\module{Queue} ---
!          A synchronized queue class}
  
+ \declaremodule{standard}{Queue}
  \modulesynopsis{A synchronized queue class.}
  
  

Index: libreadline.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libreadline.tex,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** libreadline.tex	2000/08/09 14:37:05	1.4
--- libreadline.tex	2000/10/10 17:03:45	1.5
***************
*** 5,9 ****
    \platform{Unix}
  \sectionauthor{Skip Montanaro}{skip@mojam.com}
! \modulesynopsis{GNU Readline in Python.}
  
  
--- 5,9 ----
    \platform{Unix}
  \sectionauthor{Skip Montanaro}{skip@mojam.com}
! \modulesynopsis{GNU readline support for Python.}
  
  

Index: librepr.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/librepr.tex,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** librepr.tex	1999/01/28 19:30:49	1.2
--- librepr.tex	2000/10/10 17:03:45	1.3
***************
*** 1,4 ****
  \section{\module{repr} ---
!          Alternate \function{repr()} implementation.}
  
  \sectionauthor{Fred L. Drake, Jr.}{fdrake@acm.org}
--- 1,4 ----
  \section{\module{repr} ---
!          Alternate \function{repr()} implementation}
  
  \sectionauthor{Fred L. Drake, Jr.}{fdrake@acm.org}

Index: librlcompleter.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/librlcompleter.tex,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** librlcompleter.tex	2000/07/06 04:51:04	1.3
--- librlcompleter.tex	2000/10/10 17:03:45	1.4
***************
*** 1,9 ****
  \section{\module{rlcompleter} ---
!          Completion function for readline}
  
  \declaremodule{standard}{rlcompleter}
    \platform{Unix}
  \sectionauthor{Moshe Zadka}{mzadka@geocities.com}
! \modulesynopsis{Python identifier completion in the readline library.}
  
  The \module{rlcompleter} module defines a completion function for
--- 1,9 ----
  \section{\module{rlcompleter} ---
!          Completion function for GNU readline}
  
  \declaremodule{standard}{rlcompleter}
    \platform{Unix}
  \sectionauthor{Moshe Zadka}{mzadka@geocities.com}
! \modulesynopsis{Python identifier completion for the GNU readline library.}
  
  The \module{rlcompleter} module defines a completion function for

Index: librotor.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/librotor.tex,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -r1.15 -r1.16
*** librotor.tex	2000/07/16 19:01:10	1.15
--- librotor.tex	2000/10/10 17:03:45	1.16
***************
*** 1,6 ****
  \section{\module{rotor} ---
!          Enigma-like encryption and decryption.}
! \declaremodule{builtin}{rotor}
  
  \modulesynopsis{Enigma-like encryption and decryption.}
  
--- 1,6 ----
  \section{\module{rotor} ---
!          Enigma-like encryption and decryption}
  
+ \declaremodule{builtin}{rotor}
  \modulesynopsis{Enigma-like encryption and decryption.}
  

Index: libsignal.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libsignal.tex,v
retrieving revision 1.18
retrieving revision 1.19
diff -C2 -r1.18 -r1.19
*** libsignal.tex	2000/07/16 19:01:10	1.18
--- libsignal.tex	2000/10/10 17:03:45	1.19
***************
*** 1,8 ****
  \section{\module{signal} ---
!          Set handlers for asynchronous events.}
! \declaremodule{builtin}{signal}
! 
  
  \modulesynopsis{Set handlers for asynchronous events.}
  
  This module provides mechanisms to use signal handlers in Python.
--- 1,8 ----
  \section{\module{signal} ---
!          Set handlers for asynchronous events}
  
+ \declaremodule{builtin}{signal}
  \modulesynopsis{Set handlers for asynchronous events.}
+ 
  
  This module provides mechanisms to use signal handlers in Python.

Index: libsndhdr.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libsndhdr.tex,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** libsndhdr.tex	1999/01/06 15:21:19	1.2
--- libsndhdr.tex	2000/10/10 17:03:45	1.3
***************
*** 1,4 ****
  \section{\module{sndhdr} ---
!          Determine type of sound file.}
  
  \declaremodule{standard}{sndhdr}
--- 1,4 ----
  \section{\module{sndhdr} ---
!          Determine type of sound file}
  
  \declaremodule{standard}{sndhdr}

Index: libsocksvr.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libsocksvr.tex,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -r1.12 -r1.13
*** libsocksvr.tex	1999/11/10 16:21:37	1.12
--- libsocksvr.tex	2000/10/10 17:03:45	1.13
***************
*** 1,6 ****
  \section{\module{SocketServer} ---
!          A framework for network servers.}
! \declaremodule{standard}{SocketServer}
  
  \modulesynopsis{A framework for network servers.}
  
--- 1,6 ----
  \section{\module{SocketServer} ---
!          A framework for network servers}
  
+ \declaremodule{standard}{SocketServer}
  \modulesynopsis{A framework for network servers.}