[Python-checkins] r42054 - in python/branches/release24-maint/Doc: lib/emailutil.tex lib/libcmd.tex lib/libfuncs.tex lib/libos.tex lib/librandom.tex ref/ref2.tex

georg.brandl python-checkins at python.org
Sun Jan 15 08:55:47 CET 2006


Author: georg.brandl
Date: Sun Jan 15 08:55:42 2006
New Revision: 42054

Modified:
   python/branches/release24-maint/Doc/lib/emailutil.tex
   python/branches/release24-maint/Doc/lib/libcmd.tex
   python/branches/release24-maint/Doc/lib/libfuncs.tex
   python/branches/release24-maint/Doc/lib/libos.tex
   python/branches/release24-maint/Doc/lib/librandom.tex
   python/branches/release24-maint/Doc/ref/ref2.tex
Log:
Remove dots in \version{added,changed} arguments.



Modified: python/branches/release24-maint/Doc/lib/emailutil.tex
==============================================================================
--- python/branches/release24-maint/Doc/lib/emailutil.tex	(original)
+++ python/branches/release24-maint/Doc/lib/emailutil.tex	Sun Jan 15 08:55:42 2006
@@ -148,10 +148,10 @@
 \end{funcdesc}
 
 \versionchanged[The \function{dump_address_pair()} function has been removed;
-use \function{formataddr()} instead.]{2.4}
+use \function{formataddr()} instead]{2.4}
 
 \versionchanged[The \function{decode()} function has been removed; use the
-\method{Header.decode_header()} method instead.]{2.4}
+\method{Header.decode_header()} method instead]{2.4}
 
 \versionchanged[The \function{encode()} function has been removed; use the
-\method{Header.encode()} method instead.]{2.4}
+\method{Header.encode()} method instead]{2.4}

Modified: python/branches/release24-maint/Doc/lib/libcmd.tex
==============================================================================
--- python/branches/release24-maint/Doc/lib/libcmd.tex	(original)
+++ python/branches/release24-maint/Doc/lib/libcmd.tex	Sun Jan 15 08:55:42 2006
@@ -29,7 +29,7 @@
 instance will use for input and output. If not specified, they
 will default to \var{sys.stdin} and \var{sys.stdout}.
 
-\versionchanged[The \var{stdin} and \var{stdout} parameters were added.]{2.3}
+\versionchanged[The \var{stdin} and \var{stdout} parameters were added]{2.3}
 \end{classdesc}
 
 \subsection{Cmd Objects}

Modified: python/branches/release24-maint/Doc/lib/libfuncs.tex
==============================================================================
--- python/branches/release24-maint/Doc/lib/libfuncs.tex	(original)
+++ python/branches/release24-maint/Doc/lib/libfuncs.tex	Sun Jan 15 08:55:42 2006
@@ -510,7 +510,7 @@
 \begin{funcdesc}{hex}{x}
   Convert an integer number (of any size) to a hexadecimal string.
   The result is a valid Python expression.
-  \versionchanged[Formerly only returned an unsigned literal.]{2.4}
+  \versionchanged[Formerly only returned an unsigned literal]{2.4}
 \end{funcdesc}
 
 \begin{funcdesc}{id}{object}
@@ -670,7 +670,7 @@
 \begin{funcdesc}{oct}{x}
   Convert an integer number (of any size) to an octal string.  The
   result is a valid Python expression.
-  \versionchanged[Formerly only returned an unsigned literal.]{2.4}
+  \versionchanged[Formerly only returned an unsigned literal]{2.4}
 \end{funcdesc}
 
 \begin{funcdesc}{open}{filename\optional{, mode\optional{, bufsize}}}
@@ -1133,7 +1133,7 @@
 
   \versionchanged[Formerly, \function{zip()} required at least one argument
   and \code{zip()} raised a \exception{TypeError} instead of returning
-  an empty list.]{2.4}
+  an empty list]{2.4}
 \end{funcdesc}
 
 

Modified: python/branches/release24-maint/Doc/lib/libos.tex
==============================================================================
--- python/branches/release24-maint/Doc/lib/libos.tex	(original)
+++ python/branches/release24-maint/Doc/lib/libos.tex	Sun Jan 15 08:55:42 2006
@@ -790,7 +790,7 @@
 Availability: Macintosh, \UNIX, Windows.
 
 \versionchanged[On Windows NT/2k/XP and Unix, if \var{path} is a Unicode
-object, the result will be a list of Unicode objects.]{2.3}
+object, the result will be a list of Unicode objects]{2.3}
 \end{funcdesc}
 
 \begin{funcdesc}{lstat}{path}

Modified: python/branches/release24-maint/Doc/lib/librandom.tex
==============================================================================
--- python/branches/release24-maint/Doc/lib/librandom.tex	(original)
+++ python/branches/release24-maint/Doc/lib/librandom.tex	Sun Jan 15 08:55:42 2006
@@ -97,7 +97,7 @@
   \versionadded{2.1}
   \versionchanged[Instead of jumping to a specific state, \var{n} steps
   ahead, \method{jumpahead(\var{n})} jumps to another state likely to be
-  separated by many steps.]{2.3}
+  separated by many steps]{2.3}
  \end{funcdesc}
 
 \begin{funcdesc}{getrandbits}{k}

Modified: python/branches/release24-maint/Doc/ref/ref2.tex
==============================================================================
--- python/branches/release24-maint/Doc/ref/ref2.tex	(original)
+++ python/branches/release24-maint/Doc/ref/ref2.tex	Sun Jan 15 08:55:42 2006
@@ -9,7 +9,7 @@
 
 Python uses the 7-bit \ASCII{} character set for program text.
 \versionadded[An encoding declaration can be used to indicate that 
-string literals and comments use an encoding different from ASCII.]{2.3}
+string literals and comments use an encoding different from ASCII]{2.3}
 For compatibility with older versions, Python only warns if it finds
 8-bit characters; those warnings should be corrected by either declaring
 an explicit encoding, or using escape sequences if those bytes are binary


More information about the Python-checkins mailing list