[Python-checkins] python/dist/src/Doc/lib libbsddb.tex, 1.14, 1.15 libcurses.tex, 1.45, 1.46 libfcntl.tex, 1.31, 1.32 libitertools.tex, 1.24, 1.25

rhettinger at users.sourceforge.net rhettinger at users.sourceforge.net
Sun Dec 7 08:00:31 EST 2003


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

Modified Files:
	libbsddb.tex libcurses.tex libfcntl.tex libitertools.tex 
Log Message:
SF patch #855195:  fix typos
(Contributed by George Yoshida.)



Index: libbsddb.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libbsddb.tex,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** libbsddb.tex	13 Nov 2003 08:30:03 -0000	1.14
--- libbsddb.tex	7 Dec 2003 13:00:23 -0000	1.15
***************
*** 192,196 ****
  8 64
  9 81
! >>> 8 in db
  True
  >>> db.sync()
--- 192,196 ----
  8 64
  9 81
! >>> '8' in db
  True
  >>> db.sync()

Index: libcurses.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libcurses.tex,v
retrieving revision 1.45
retrieving revision 1.46
diff -C2 -d -r1.45 -r1.46
*** libcurses.tex	14 Aug 2003 04:51:24 -0000	1.45
--- libcurses.tex	7 Dec 2003 13:00:24 -0000	1.46
***************
*** 363,367 ****
  
  \begin{funcdesc}{noecho}{}
! Leave echo mode.  Echoing of input characters is turned off,
  \end{funcdesc}
  
--- 363,367 ----
  
  \begin{funcdesc}{noecho}{}
! Leave echo mode.  Echoing of input characters is turned off.
  \end{funcdesc}
  

Index: libfcntl.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libfcntl.tex,v
retrieving revision 1.31
retrieving revision 1.32
diff -C2 -d -r1.31 -r1.32
*** libfcntl.tex	3 Mar 2003 12:29:42 -0000	1.31
--- libfcntl.tex	7 Dec 2003 13:00:25 -0000	1.32
***************
*** 88,92 ****
  
  \begin{verbatim}
! >>> import array, fnctl, struct, termios, os
  >>> os.getpgrp()
  13341
--- 88,92 ----
  
  \begin{verbatim}
! >>> import array, fcntl, struct, termios, os
  >>> os.getpgrp()
  13341

Index: libitertools.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libitertools.tex,v
retrieving revision 1.24
retrieving revision 1.25
diff -C2 -d -r1.24 -r1.25
*** libitertools.tex	6 Dec 2003 22:29:43 -0000	1.24
--- libitertools.tex	7 Dec 2003 13:00:25 -0000	1.25
***************
*** 77,80 ****
--- 77,81 ----
  \begin{funcdesc}{count}{\optional{n}}
    Make an iterator that returns consecutive integers starting with \var{n}.
+   If not specified \var{n} defaults to zero.  
    Does not currently support python long integers.  Often used as an
    argument to \function{imap()} to generate consecutive data points.





More information about the Python-checkins mailing list