[Python-checkins] python/dist/src/Doc/lib libcookie.tex, 1.10, 1.11 libfuncs.tex, 1.145, 1.146 liblocale.tex, 1.33, 1.34 libmailbox.tex, 1.26, 1.27 libmultifile.tex, 1.12, 1.13 libpdb.tex, 1.37, 1.38 libprofile.tex, 1.41, 1.42 librfc822.tex, 1.44, 1.45 libuserdict.tex, 1.23, 1.24 libzipfile.tex, 1.15, 1.16

rhettinger at users.sourceforge.net rhettinger at users.sourceforge.net
Sun Aug 24 22:28:07 EDT 2003


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

Modified Files:
	libcookie.tex libfuncs.tex liblocale.tex libmailbox.tex 
	libmultifile.tex libpdb.tex libprofile.tex librfc822.tex 
	libuserdict.tex libzipfile.tex 
Log Message:
Fix double word typos.

Index: libcookie.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libcookie.tex,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** libcookie.tex	31 Dec 2002 15:23:09 -0000	1.10
--- libcookie.tex	25 Aug 2003 04:28:03 -0000	1.11
***************
*** 13,17 ****
  data-type as cookie value.
  
! The module formerly strictly applied the parsing rules described in in
  the \rfc{2109} and \rfc{2068} specifications.  It has since been discovered
  that MSIE 3.0x doesn't follow the character rules outlined in those
--- 13,17 ----
  data-type as cookie value.
  
! The module formerly strictly applied the parsing rules described in
  the \rfc{2109} and \rfc{2068} specifications.  It has since been discovered
  that MSIE 3.0x doesn't follow the character rules outlined in those

Index: libfuncs.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libfuncs.tex,v
retrieving revision 1.145
retrieving revision 1.146
diff -C2 -d -r1.145 -r1.146
*** libfuncs.tex	12 Aug 2003 00:01:15 -0000	1.145
--- libfuncs.tex	25 Aug 2003 04:28:04 -0000	1.146
***************
*** 423,427 ****
    buffered, any other positive value means use a buffer of
    (approximately) that size.  A negative \var{bufsize} means to use
!   the system default, which is usually line buffered for for tty
    devices and fully buffered for other files.  If omitted, the system
    default is used.\footnote{
--- 423,427 ----
    buffered, any other positive value means use a buffer of
    (approximately) that size.  A negative \var{bufsize} means to use
!   the system default, which is usually line buffered for tty
    devices and fully buffered for other files.  If omitted, the system
    default is used.\footnote{

Index: liblocale.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/liblocale.tex,v
retrieving revision 1.33
retrieving revision 1.34
diff -C2 -d -r1.33 -r1.34
*** liblocale.tex	12 May 2003 03:23:51 -0000	1.33
--- liblocale.tex	25 Aug 2003 04:28:04 -0000	1.34
***************
*** 59,63 ****
  
  \begin{funcdesc}{localeconv}{}
!   Returns the database of of the local conventions as a dictionary.
    This dictionary has the following strings as keys:
  
--- 59,63 ----
  
  \begin{funcdesc}{localeconv}{}
!   Returns the database of the local conventions as a dictionary.
    This dictionary has the following strings as keys:
  

Index: libmailbox.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libmailbox.tex,v
retrieving revision 1.26
retrieving revision 1.27
diff -C2 -d -r1.26 -r1.27
*** libmailbox.tex	20 Jun 2003 22:04:03 -0000	1.26
--- libmailbox.tex	25 Aug 2003 04:28:04 -0000	1.27
***************
*** 73,77 ****
  Babyl format, each message has two sets of headers, the
  \emph{original} headers and the \emph{visible} headers.  The original
! headers appear before a a line containing only \code{'*** EOOH ***'}
  (End-Of-Original-Headers) and the visible headers appear after the
  \code{EOOH} line.  Babyl-compliant mail readers will show you only the
--- 73,77 ----
  Babyl format, each message has two sets of headers, the
  \emph{original} headers and the \emph{visible} headers.  The original
! headers appear before a line containing only \code{'*** EOOH ***'}
  (End-Of-Original-Headers) and the visible headers appear after the
  \code{EOOH} line.  Babyl-compliant mail readers will show you only the

Index: libmultifile.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libmultifile.tex,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** libmultifile.tex	6 Aug 2002 21:26:01 -0000	1.12
--- libmultifile.tex	25 Aug 2003 04:28:04 -0000	1.13
***************
*** 18,22 ****
  Create a multi-file.  You must instantiate this class with an input
  object argument for the \class{MultiFile} instance to get lines from,
! such as as a file object returned by \function{open()}.
  
  \class{MultiFile} only ever looks at the input object's
--- 18,22 ----
  Create a multi-file.  You must instantiate this class with an input
  object argument for the \class{MultiFile} instance to get lines from,
! such as a file object returned by \function{open()}.
  
  \class{MultiFile} only ever looks at the input object's

Index: libpdb.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libpdb.tex,v
retrieving revision 1.37
retrieving revision 1.38
diff -C2 -d -r1.37 -r1.38
*** libpdb.tex	16 Jul 2003 17:58:38 -0000	1.37
--- libpdb.tex	25 Aug 2003 04:28:04 -0000	1.38
***************
*** 78,82 ****
  
  \begin{funcdesc}{runeval}{expression\optional{, globals\optional{, locals}}}
! Evaluate the \var{expression} (given as a a string) under debugger
  control.  When \function{runeval()} returns, it returns the value of the
  expression.  Otherwise this function is similar to
--- 78,82 ----
  
  \begin{funcdesc}{runeval}{expression\optional{, globals\optional{, locals}}}
! Evaluate the \var{expression} (given as a string) under debugger
  control.  When \function{runeval()} returns, it returns the value of the
  expression.  Otherwise this function is similar to

Index: libprofile.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libprofile.tex,v
retrieving revision 1.41
retrieving revision 1.42
diff -C2 -d -r1.41 -r1.42
*** libprofile.tex	14 Jul 2003 18:24:26 -0000	1.41
--- libprofile.tex	25 Aug 2003 04:28:04 -0000	1.42
***************
*** 534,538 ****
  accuracy.  The most obvious restriction is that the underlying ``clock''
  is only ticking at a rate (typically) of about .001 seconds.  Hence no
! measurements will be more accurate that that underlying clock.  If
  enough measurements are taken, then the ``error'' will tend to average
  out. Unfortunately, removing this first error induces a second source
--- 534,538 ----
  accuracy.  The most obvious restriction is that the underlying ``clock''
  is only ticking at a rate (typically) of about .001 seconds.  Hence no
! measurements will be more accurate than the underlying clock.  If
  enough measurements are taken, then the ``error'' will tend to average
  out. Unfortunately, removing this first error induces a second source

Index: librfc822.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/librfc822.tex,v
retrieving revision 1.44
retrieving revision 1.45
diff -C2 -d -r1.44 -r1.45
*** librfc822.tex	16 Jul 2003 17:58:38 -0000	1.44
--- librfc822.tex	25 Aug 2003 04:28:04 -0000	1.45
***************
*** 47,51 ****
  doesn't work.  For maximum portability, you should set the seekable
  argument to zero to prevent that initial \method{tell()} when passing
! in an unseekable object such as a a file object created from a socket
  object.
  
--- 47,51 ----
  doesn't work.  For maximum portability, you should set the seekable
  argument to zero to prevent that initial \method{tell()} when passing
! in an unseekable object such as a file object created from a socket
  object.
  

Index: libuserdict.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libuserdict.tex,v
retrieving revision 1.23
retrieving revision 1.24
diff -C2 -d -r1.23 -r1.24
*** libuserdict.tex	18 Nov 2002 04:34:10 -0000	1.23
--- libuserdict.tex	25 Aug 2003 04:28:04 -0000	1.24
***************
*** 30,34 ****
  \var{initialdata} is provided, \member{data} is initialized with its
  contents; note that a reference to \var{initialdata} will not be kept, 
! allowing it be used used for other purposes.
  \end{classdesc}
  
--- 30,34 ----
  \var{initialdata} is provided, \member{data} is initialized with its
  contents; note that a reference to \var{initialdata} will not be kept, 
! allowing it be used for other purposes.
  \end{classdesc}
  

Index: libzipfile.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libzipfile.tex,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** libzipfile.tex	12 Dec 2002 12:23:32 -0000	1.15
--- libzipfile.tex	25 Aug 2003 04:28:05 -0000	1.16
***************
*** 211,215 ****
  
  \begin{memberdesc}[ZipInfo]{date_time}
!   The time and date of the last modification to to the archive
    member.  This is a tuple of six values:
  
--- 211,215 ----
  
  \begin{memberdesc}[ZipInfo]{date_time}
!   The time and date of the last modification to the archive
    member.  This is a tuple of six values:
  





More information about the Python-checkins mailing list