[Python-checkins] CVS: python/dist/src/Doc/lib libascii.tex,1.2,1.3 libatexit.tex,1.2,1.3 libexcs.tex,1.29,1.30 libfuncs.tex,1.65,1.66 libos.tex,1.41,1.42 libstdtypes.tex,1.22,1.23 libsys.tex,1.36,1.37 libtempfile.tex,1.14,1.15 libundoc.tex,1.73,1.74

Fred L. Drake python-dev@python.org
Fri, 30 Jun 2000 09:06:21 -0700


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory slayer.i.sourceforge.net:/tmp/cvs-serv28564/lib

Modified Files:
	libascii.tex libatexit.tex libexcs.tex libfuncs.tex libos.tex 
	libstdtypes.tex libsys.tex libtempfile.tex libundoc.tex 
Log Message:

Update version numbering from 1.6 to 2.0.


Index: libascii.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libascii.tex,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** libascii.tex	2000/06/28 22:03:29	1.2
--- libascii.tex	2000/06/30 16:06:19	1.3
***************
*** 8,12 ****
  \sectionauthor{Eric S. Raymond}{esr@thyrsus.com}
  
! \versionadded{1.6}
  
  The \module{curses.ascii} module supplies name constants for
--- 8,12 ----
  \sectionauthor{Eric S. Raymond}{esr@thyrsus.com}
  
! \versionadded{2.0}
  
  The \module{curses.ascii} module supplies name constants for

Index: libatexit.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libatexit.tex,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** libatexit.tex	2000/06/28 22:07:55	1.2
--- libatexit.tex	2000/06/30 16:06:19	1.3
***************
*** 7,11 ****
  \modulesynopsis{Register and execute cleanup functions.}
  
! \versionadded{1.6}
  
  The \module{atexit} module defines a single function to register
--- 7,11 ----
  \modulesynopsis{Register and execute cleanup functions.}
  
! \versionadded{2.0}
  
  The \module{atexit} module defines a single function to register

Index: libexcs.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libexcs.tex,v
retrieving revision 1.29
retrieving revision 1.30
diff -C2 -r1.29 -r1.30
*** libexcs.tex	2000/04/17 17:42:00	1.29
--- libexcs.tex	2000/06/30 16:06:19	1.30
***************
*** 299,303 ****
    method, but no value has been bound to that variable.  This is a
    subclass of \exception{NameError}.
! \versionadded{1.6}
  \end{excdesc}
  
--- 299,303 ----
    method, but no value has been bound to that variable.  This is a
    subclass of \exception{NameError}.
! \versionadded{2.0}
  \end{excdesc}
  
***************
*** 305,309 ****
    Raised when a Unicode-related encoding or decoding error occurs.  It
    is a subclass of \exception{ValueError}.
! \versionadded{1.6}
  \end{excdesc}
  
--- 305,309 ----
    Raised when a Unicode-related encoding or decoding error occurs.  It
    is a subclass of \exception{ValueError}.
! \versionadded{2.0}
  \end{excdesc}
  
***************
*** 322,326 ****
    \cfunction{FormatMessage()} functions from the Windows Platform API.
    This is a subclass of \exception{OSError}.
! \versionadded{1.6}
  \end{excdesc}
  
--- 322,326 ----
    \cfunction{FormatMessage()} functions from the Windows Platform API.
    This is a subclass of \exception{OSError}.
! \versionadded{2.0}
  \end{excdesc}
  

Index: libfuncs.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libfuncs.tex,v
retrieving revision 1.65
retrieving revision 1.66
diff -C2 -r1.65 -r1.66
*** libfuncs.tex	2000/06/29 03:46:46	1.65
--- libfuncs.tex	2000/06/30 16:06:19	1.66
***************
*** 670,674 ****
  strings.  The argument must be in the range [0..65535], inclusive.
  \exception{ValueError} is raised otherwise.
! \versionadded{1.6}
  \end{funcdesc}
  
--- 670,674 ----
  strings.  The argument must be in the range [0..65535], inclusive.
  \exception{ValueError} is raised otherwise.
! \versionadded{2.0}
  \end{funcdesc}
  
***************
*** 678,682 ****
  to decode UTF-8 in strict mode, meaning that encoding errors raise
  \exception{ValueError}.
! \versionadded{1.6}
  \end{funcdesc}
  
--- 678,682 ----
  to decode UTF-8 in strict mode, meaning that encoding errors raise
  \exception{ValueError}.
! \versionadded{2.0}
  \end{funcdesc}
  

Index: libos.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libos.tex,v
retrieving revision 1.41
retrieving revision 1.42
diff -C2 -r1.41 -r1.42
*** libos.tex	2000/06/28 17:27:48	1.41
--- libos.tex	2000/06/30 16:06:19	1.42
***************
*** 717,721 ****
  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}
  Availability: Macintosh, \UNIX{}, Windows.
  \end{funcdesc}
--- 717,721 ----
  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}]{2.0}
  Availability: Macintosh, \UNIX{}, Windows.
  \end{funcdesc}

Index: libstdtypes.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libstdtypes.tex,v
retrieving revision 1.22
retrieving revision 1.23
diff -C2 -r1.22 -r1.23
*** libstdtypes.tex	2000/04/03 20:13:54	1.22
--- libstdtypes.tex	2000/06/30 16:06:19	1.23
***************
*** 497,501 ****
  \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
    deprecated since Python 1.4.
  
--- 497,501 ----
  \item[(1)] The C implementation of Python has historically accepted
    multiple parameters and implicitly joined them into a tuple; this
!   no longer works in Python 2.0.  Use of this misfeature has been
    deprecated since Python 1.4.
  

Index: libsys.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libsys.tex,v
retrieving revision 1.36
retrieving revision 1.37
diff -C2 -r1.36 -r1.37
*** libsys.tex	2000/06/28 15:07:30	1.36
--- libsys.tex	2000/06/30 16:06:19	1.37
***************
*** 335,341 ****
  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}
  \end{datadesc}
  
--- 335,341 ----
  release level is \code{'alpha'}, \code{'beta'},
  \code{'candidate'}, or \code{'final'}.  The \code{version_info} value
! corresponding to the Python version 2.0 is
! \code{(2, 0, 0, 'final', 0)}.
! \versionadded{2.0}
  \end{datadesc}
  

Index: libtempfile.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libtempfile.tex,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -r1.14 -r1.15
*** libtempfile.tex	2000/05/26 19:32:14	1.14
--- libtempfile.tex	2000/06/30 16:06:19	1.15
***************
*** 64,68 ****
  
  \begin{datadesc}{template}
! \deprecated{1.6}{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
--- 64,68 ----
  
  \begin{datadesc}{template}
! \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

Index: libundoc.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libundoc.tex,v
retrieving revision 1.73
retrieving revision 1.74
diff -C2 -r1.73 -r1.74
*** libundoc.tex	2000/04/03 20:13:54	1.73
--- libundoc.tex	2000/06/30 16:06:19	1.74
***************
*** 41,45 ****
  \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
  \module{dircmp}.}
  
--- 41,45 ----
  \item[\module{dircmp}]
  --- Class to build directory diff tools on (may become a demo or tool).
! \deprecated{2.0}{The \refmodule{filecmp} module will replace
  \module{dircmp}.}