]> granicus.if.org Git - python/commitdiff
Update version numbering from 1.6 to 2.0.
authorFred Drake <fdrake@acm.org>
Fri, 30 Jun 2000 16:06:19 +0000 (16:06 +0000)
committerFred Drake <fdrake@acm.org>
Fri, 30 Jun 2000 16:06:19 +0000 (16:06 +0000)
Doc/Makefile
Doc/lib/libascii.tex
Doc/lib/libatexit.tex
Doc/lib/libexcs.tex
Doc/lib/libfuncs.tex
Doc/lib/libos.tex
Doc/lib/libstdtypes.tex
Doc/lib/libsys.tex
Doc/lib/libtempfile.tex
Doc/lib/libundoc.tex
Doc/tut/tut.tex

index ee1023c8bf94ecd0b4e71251dab19cb5bc47910a..db88c2c68b06ef9bec32bfaf81eb6d8cf6a0f5ec 100644 (file)
@@ -61,7 +61,7 @@ TOOLSDIR=     tools
 
 # This is the *documentation* release, and is used to construct the file
 # names of the downloadable tarballs.
-RELEASE=1.6a2
+RELEASE=2.0b1
 
 
 # These must be declared phony since there
index afb35956247703a72e32e19ce2a52d96b8ec5d1c..d71aa2ef85115c639a0d7894c554743cf00ce4be 100644 (file)
@@ -7,7 +7,7 @@
 \moduleauthor{Eric S. Raymond}{esr@thyrsus.com}
 \sectionauthor{Eric S. Raymond}{esr@thyrsus.com}
 
-\versionadded{1.6}
+\versionadded{2.0}
 
 The \module{curses.ascii} module supplies name constants for
 \ASCII{} characters and functions to test membership in various
index 077df5571057a3a71f080bc78c68d6bf7c2e0ffe..df0cdd49752af548e788afad7014e9d826c64542 100644 (file)
@@ -6,7 +6,7 @@
 \sectionauthor{Skip Montanaro}{skip@mojam.com}
 \modulesynopsis{Register and execute cleanup functions.}
 
-\versionadded{1.6}
+\versionadded{2.0}
 
 The \module{atexit} module defines a single function to register
 cleanup functions.  Functions thus registered are automatically
index 4d5ab853f52a81dbc05b0d69a7cc70abe9001146..98793a23d627ecfb20c35bef0089b31e6b656b80 100644 (file)
@@ -298,13 +298,13 @@ For class exceptions, \function{str()} returns only the message.
   Raised when a reference is made to a local variable in a function or
   method, but no value has been bound to that variable.  This is a
   subclass of \exception{NameError}.
-\versionadded{1.6}
+\versionadded{2.0}
 \end{excdesc}
 
 \begin{excdesc}{UnicodeError}
   Raised when a Unicode-related encoding or decoding error occurs.  It
   is a subclass of \exception{ValueError}.
-\versionadded{1.6}
+\versionadded{2.0}
 \end{excdesc}
 
 \begin{excdesc}{ValueError}
@@ -321,7 +321,7 @@ For class exceptions, \function{str()} returns only the message.
   return values of the \cfunction{GetLastError()} and
   \cfunction{FormatMessage()} functions from the Windows Platform API.
   This is a subclass of \exception{OSError}.
-\versionadded{1.6}
+\versionadded{2.0}
 \end{excdesc}
 
 \begin{excdesc}{ZeroDivisionError}
index 3e6e3cbc4895c8f255ffc35c0ce4bc704f270c7a..91afe4fba0b02ad2737ed92345d54fc6b94b6fa6 100644 (file)
@@ -669,7 +669,7 @@ integer \var{i}, e.g., \code{unichr(97)} returns the string
 \code{u'a'}.  This is the inverse of \function{ord()} for Unicode
 strings.  The argument must be in the range [0..65535], inclusive.
 \exception{ValueError} is raised otherwise.
-\versionadded{1.6}
+\versionadded{2.0}
 \end{funcdesc}
 
 \begin{funcdesc}{unicode}{string\optional{, encoding='utf-8'\optional{, errors='strict'}}}
@@ -677,7 +677,7 @@ Decodes \var{string} using the codec for \var{encoding}.  Error
 handling is done according to \var{errors}.  The default behavior is
 to decode UTF-8 in strict mode, meaning that encoding errors raise
 \exception{ValueError}.
-\versionadded{1.6}
+\versionadded{2.0}
 \end{funcdesc}
 
 \begin{funcdesc}{vars}{\optional{object}}
index c506a0507f639728bcb0e6240da12c8e8e79e1cf..55db0e1b27639fc91e202f4ede30fce94886ac74 100644 (file)
@@ -716,7 +716,7 @@ If \var{times} is \code{None}, then the file's access and modified
 times are set to the current time.  Otherwise, \var{times} must be a
 2-tuple of numbers, of the form \code{(\var{atime}, \var{mtime})}
 which is used to set the access and modified times, respectively.
-\versionchanged[added support for \code{None} for \var{times}]{1.6}
+\versionchanged[added support for \code{None} for \var{times}]{2.0}
 Availability: Macintosh, \UNIX{}, Windows.
 \end{funcdesc}
 
index f4c0c8af6c979bad8197704f0af8912e285f3c25..8b6db8fef539a4a504c230a63a9c645cf69ce688 100644 (file)
@@ -496,7 +496,7 @@ Notes:
 \begin{description}
 \item[(1)] The C implementation of Python has historically accepted
   multiple parameters and implicitly joined them into a tuple; this
-  will no longer work in Python 1.6.  Use of this misfeature has been
+  no longer works in Python 2.0.  Use of this misfeature has been
   deprecated since Python 1.4.
 
 \item[(2)] Raises an exception when \var{x} is not a list object.  The 
index 9b4f9062d1a83d36315486648cf0d13328f26ef0..54f9493dc483281d020b40bd01b99808c4141d2b 100644 (file)
@@ -334,9 +334,9 @@ A tuple containing the five components of the version number:
 \var{serial}.  All values except \var{releaselevel} are integers; the
 release level is \code{'alpha'}, \code{'beta'},
 \code{'candidate'}, or \code{'final'}.  The \code{version_info} value
-corresponding to the Python version 1.6 is
-\code{(1, 6, 0, 'final', 0)}.
-\versionadded{1.6}
+corresponding to the Python version 2.0 is
+\code{(2, 0, 0, 'final', 0)}.
+\versionadded{2.0}
 \end{datadesc}
 
 \begin{datadesc}{winver}
index d1bc0112f48ab5514ef7434146ace16be93caa85..b3e528b3db8f37bfec1cc5333713e3b8f9d0aea9 100644 (file)
@@ -63,7 +63,7 @@ over using the \code{template} variable directly.
 \end{funcdesc}
 
 \begin{datadesc}{template}
-\deprecated{1.6}{Use \function{gettempprefix()} instead.}
+\deprecated{2.0}{Use \function{gettempprefix()} instead.}
 When set to a value other than \code{None}, this variable defines the
 prefix of the final component of the filenames returned by
 \function{mktemp()}.  A string of decimal digits is added to generate
index fac635a1a8beac0330fd3ba06375733ef7b9ea6c..28be6205f04d2597bb39b876b339f98c013b18f7 100644 (file)
@@ -40,7 +40,7 @@ Some of these are very old and/or not very robust; marked with ``hmm.''
 \begin{description}
 \item[\module{dircmp}]
 --- Class to build directory diff tools on (may become a demo or tool).
-\deprecated{1.6}{The \refmodule{filecmp} module will replace
+\deprecated{2.0}{The \refmodule{filecmp} module will replace
 \module{dircmp}.}
 
 \item[\module{bdb}]
index bdb5556033251f177c7234f2ff36685faf153e35..acccd16aa27f8e3ad5574b6b006ffe92a45db820 100644 (file)
@@ -737,7 +737,7 @@ The built-in function \function{len()} returns the length of a string:
 \subsection{Unicode Strings \label{unicodeStrings}}
 \sectionauthor{Marc-Andre Lemburg}{mal@lemburg.com}
 
-Starting with Python 1.6 a new data type for storing text data is
+Starting with Python 2.0 a new data type for storing text data is
 available to the programmer: the Unicode object. It can be used to
 store and manipulate Unicode data (see \url{http://www.unicode.org})
 and intergrates well with the existing string objects providing