[Python-checkins] commit of r41863 - python/branches/release24-maint/Doc/lib/liblogging.tex python/branches/release24-maint/Doc/lib/libstdtypes.tex python/branches/release24-maint/Doc/lib/libsubprocess.tex

reinhold.birkenfeld python-checkins at python.org
Sun Jan 1 22:35:48 CET 2006


Author: reinhold.birkenfeld
Date: Sun Jan  1 22:35:41 2006
New Revision: 41863

Modified:
   python/branches/release24-maint/Doc/lib/liblogging.tex
   python/branches/release24-maint/Doc/lib/libstdtypes.tex
   python/branches/release24-maint/Doc/lib/libsubprocess.tex
Log:
Bug #1394868: doc typos



Modified: python/branches/release24-maint/Doc/lib/liblogging.tex
==============================================================================
--- python/branches/release24-maint/Doc/lib/liblogging.tex	(original)
+++ python/branches/release24-maint/Doc/lib/liblogging.tex	Sun Jan  1 22:35:41 2006
@@ -59,7 +59,7 @@
 logging output.
 
 Logging messages are encoded as instances of the \class{LogRecord} class.
-When a logger decides to actually log an event, an \class{LogRecord}
+When a logger decides to actually log an event, a \class{LogRecord}
 instance is created from the logging message.
 
 Logging messages are subjected to a dispatch mechanism through the

Modified: python/branches/release24-maint/Doc/lib/libstdtypes.tex
==============================================================================
--- python/branches/release24-maint/Doc/lib/libstdtypes.tex	(original)
+++ python/branches/release24-maint/Doc/lib/libstdtypes.tex	Sun Jan  1 22:35:41 2006
@@ -952,8 +952,8 @@
              precede the conversion (overrides a "space" flag).}
 \end{tableii}
 
-The length modifier may be \code{h}, \code{l}, and \code{L} may be
-present, but are ignored as they are not necessary for Python.
+A length modifier (\code{h}, \code{l}, or \code{L}) may be
+present, but is ignored as it is not necessary for Python.
 
 The conversion types are:
 
@@ -1606,7 +1606,7 @@
   defaults to the current position.  The current file position is
   not changed.  Note that if a specified size exceeds the file's
   current size, the result is platform-dependent:  possibilities
-  include that file may remain unchanged, increase to the specified
+  include that the file may remain unchanged, increase to the specified
   size as if zero-filled, or increase to the specified size with
   undefined new content.
   Availability:  Windows, many \UNIX{} variants.

Modified: python/branches/release24-maint/Doc/lib/libsubprocess.tex
==============================================================================
--- python/branches/release24-maint/Doc/lib/libsubprocess.tex	(original)
+++ python/branches/release24-maint/Doc/lib/libsubprocess.tex	Sun Jan  1 22:35:41 2006
@@ -103,7 +103,7 @@
 for the new process.
 
 If \var{universal_newlines} is \constant{True}, the file objects stdout
-and stderr are opened as a text files, but lines may be terminated by
+and stderr are opened as text files, but lines may be terminated by
 any of \code{'\e n'}, the Unix end-of-line convention, \code{'\e r'},
 the Macintosh convention or \code{'\e r\e n'}, the Windows convention.
 All of these external representations are seen as \code{'\e n'} by the


More information about the Python-checkins mailing list