[Python-checkins] python/dist/src/Doc/lib libbsddb.tex, 1.11.10.2, 1.11.10.3 libcurses.tex, 1.42.8.1, 1.42.8.2 libfcntl.tex, 1.31, 1.31.12.1 libitertools.tex, 1.12.6.7, 1.12.6.8

rhettinger at users.sourceforge.net rhettinger at users.sourceforge.net
Sun Dec 7 08:05:17 EST 2003


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

Modified Files:
      Tag: release23-maint
	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.11.10.2
retrieving revision 1.11.10.3
diff -C2 -d -r1.11.10.2 -r1.11.10.3
*** libbsddb.tex	1 Oct 2003 06:02:05 -0000	1.11.10.2
--- libbsddb.tex	7 Dec 2003 13:05:15 -0000	1.11.10.3
***************
*** 200,204 ****
  8 64
  9 81
! >>> 8 in db
  True
  >>> db.sync()
--- 200,204 ----
  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.42.8.1
retrieving revision 1.42.8.2
diff -C2 -d -r1.42.8.1 -r1.42.8.2
*** libcurses.tex	11 Aug 2003 23:43:04 -0000	1.42.8.1
--- libcurses.tex	7 Dec 2003 13:05:15 -0000	1.42.8.2
***************
*** 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.31.12.1
diff -C2 -d -r1.31 -r1.31.12.1
*** libfcntl.tex	3 Mar 2003 12:29:42 -0000	1.31
--- libfcntl.tex	7 Dec 2003 13:05:15 -0000	1.31.12.1
***************
*** 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.12.6.7
retrieving revision 1.12.6.8
diff -C2 -d -r1.12.6.7 -r1.12.6.8
*** libitertools.tex	20 Oct 2003 20:45:33 -0000	1.12.6.7
--- libitertools.tex	7 Dec 2003 13:05:15 -0000	1.12.6.8
***************
*** 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