[Python-checkins] r79166 - in python/branches/py3k/Doc: library/argparse.rst library/shutil.rst library/sqlite3.rst library/sysconfig.rst library/test.rst library/threading.rst library/xml.etree.elementtree.rst library/zipfile.rst reference/expressions.rst

ezio.melotti python-checkins at python.org
Sun Mar 21 08:16:44 CET 2010


Author: ezio.melotti
Date: Sun Mar 21 08:16:43 2010
New Revision: 79166

Log:
Update versionadded/changed.

Modified:
   python/branches/py3k/Doc/library/argparse.rst
   python/branches/py3k/Doc/library/shutil.rst
   python/branches/py3k/Doc/library/sqlite3.rst
   python/branches/py3k/Doc/library/sysconfig.rst
   python/branches/py3k/Doc/library/test.rst
   python/branches/py3k/Doc/library/threading.rst
   python/branches/py3k/Doc/library/xml.etree.elementtree.rst
   python/branches/py3k/Doc/library/zipfile.rst
   python/branches/py3k/Doc/reference/expressions.rst

Modified: python/branches/py3k/Doc/library/argparse.rst
==============================================================================
--- python/branches/py3k/Doc/library/argparse.rst	(original)
+++ python/branches/py3k/Doc/library/argparse.rst	Sun Mar 21 08:16:43 2010
@@ -4,7 +4,7 @@
 .. module:: argparse
    :synopsis: Command-line option and argument parsing library.
 .. moduleauthor:: Steven Bethard <steven.bethard at gmail.com>
-.. versionadded:: 2.7
+.. versionadded:: 3.2
 .. sectionauthor:: Steven Bethard <steven.bethard at gmail.com>
 
 

Modified: python/branches/py3k/Doc/library/shutil.rst
==============================================================================
--- python/branches/py3k/Doc/library/shutil.rst	(original)
+++ python/branches/py3k/Doc/library/shutil.rst	Sun Mar 21 08:16:43 2010
@@ -236,7 +236,7 @@
    *owner* and *group* are used when creating a tar archive. By default,
    uses the current owner and group.
 
-   .. versionadded:: 2.7
+   .. versionadded:: 3.2
 
 
 .. function:: get_archive_formats()
@@ -255,7 +255,7 @@
    You can register new formats or provide your own archiver for any existing
    formats, by using :func:`register_archive_format`.
 
-   .. versionadded:: 2.7
+   .. versionadded:: 3.2
 
 
 .. function:: register_archive_format(name, function, [extra_args, [description]])
@@ -269,14 +269,14 @@
    *description* is used by :func:`get_archive_formats` which returns the
    list of archivers. Defaults to an empty list.
 
-   .. versionadded:: 2.7
+   .. versionadded:: 3.2
 
 
 .. function::  unregister_archive_format(name)
 
    Remove the archive format *name* from the list of supported formats.
 
-   .. versionadded:: 2.7
+   .. versionadded:: 3.2
 
 
 Archiving example

Modified: python/branches/py3k/Doc/library/sqlite3.rst
==============================================================================
--- python/branches/py3k/Doc/library/sqlite3.rst	(original)
+++ python/branches/py3k/Doc/library/sqlite3.rst	Sun Mar 21 08:16:43 2010
@@ -367,7 +367,7 @@
 
 .. method:: Connection.enable_load_extension(enabled)
 
-   .. versionadded:: 2.7
+   .. versionadded:: 3.2
 
    This routine allows/disallows the SQLite engine to load SQLite extensions
    from shared libraries.  SQLite extensions can define new functions,
@@ -378,7 +378,7 @@
 
 .. method:: Connection.load_extension(path)
 
-   .. versionadded:: 2.7
+   .. versionadded:: 3.2
 
    This routine loads a SQLite extension from a shared library. You have to
    enable extension loading with ``enable_load_extension`` before you can use

Modified: python/branches/py3k/Doc/library/sysconfig.rst
==============================================================================
--- python/branches/py3k/Doc/library/sysconfig.rst	(original)
+++ python/branches/py3k/Doc/library/sysconfig.rst	Sun Mar 21 08:16:43 2010
@@ -5,7 +5,7 @@
    :synopsis: Python's configuration information
 .. moduleauthor:: Tarek Ziade <tarek at ziade.org>
 .. sectionauthor:: Tarek Ziade <tarek at ziade.org>
-.. versionadded:: 2.7
+.. versionadded:: 3.2
 .. index::
    single: configuration information
 

Modified: python/branches/py3k/Doc/library/test.rst
==============================================================================
--- python/branches/py3k/Doc/library/test.rst	(original)
+++ python/branches/py3k/Doc/library/test.rst	Sun Mar 21 08:16:43 2010
@@ -324,7 +324,7 @@
           w.reset()
           assert len(w.warnings) == 0
 
-   .. versionchanged:: 2.7
+   .. versionchanged:: 3.2
       New optional attributes ``*filters`` and ``quiet``.
 
 

Modified: python/branches/py3k/Doc/library/threading.rst
==============================================================================
--- python/branches/py3k/Doc/library/threading.rst	(original)
+++ python/branches/py3k/Doc/library/threading.rst	Sun Mar 21 08:16:43 2010
@@ -647,9 +647,6 @@
 
       Return true if and only if the internal flag is true.
 
-      .. versionchanged:: 2.6
-         The ``is_set()`` syntax is new.
-
    .. method:: set()
 
       Set the internal flag to true. All threads waiting for it to become true

Modified: python/branches/py3k/Doc/library/xml.etree.elementtree.rst
==============================================================================
--- python/branches/py3k/Doc/library/xml.etree.elementtree.rst	(original)
+++ python/branches/py3k/Doc/library/xml.etree.elementtree.rst	Sun Mar 21 08:16:43 2010
@@ -35,7 +35,7 @@
 docs.  Fredrik Lundh's page is also the location of the development version of
 the xml.etree.ElementTree.
 
-.. versionchanged:: 2.7
+.. versionchanged:: 3.2
    The ElementTree API is updated to 1.3.  For more information, see
    `Introducing ElementTree 1.3
    <http://effbot.org/zone/elementtree-13-intro.htm>`_.
@@ -80,7 +80,7 @@
    optional parser instance.  If not given, the standard :class:`XMLParser`
    parser is used.  Returns an :class:`Element` instance.
 
-   .. versionadded:: 2.7
+   .. versionadded:: 3.2
 
 
 .. function:: iselement(element)
@@ -133,7 +133,7 @@
    attributes in this namespace will be serialized with the given prefix, if at
    all possible.
 
-   .. versionadded:: 2.7
+   .. versionadded:: 3.2
 
 
 .. function:: SubElement(parent, tag, attrib={}, **extra)
@@ -167,7 +167,7 @@
    any specific sequence, except that ``"".join(tostringlist(element)) ==
    tostring(element)``.
 
-   .. versionadded:: 2.7
+   .. versionadded:: 3.2
 
 
 .. function:: XML(text, parser=None)
@@ -282,7 +282,7 @@
       Appends *subelements* from a sequence object with zero or more elements.
       Raises :exc:`AssertionError` if a subelement is not a valid object.
 
-      .. versionadded:: 2.7
+      .. versionadded:: 3.2
 
 
    .. method:: find(match)
@@ -336,7 +336,7 @@
       Finds all matching subelements, by tag name or path.  Returns an iterable
       yielding all matching elements in document order.
 
-      .. versionadded:: 2.7
+      .. versionadded:: 3.2
 
 
    .. method:: itertext()
@@ -344,7 +344,7 @@
       Creates a text iterator.  The iterator loops over this element and all
       subelements, in document order, and returns all inner text.
 
-      .. versionadded:: 2.7
+      .. versionadded:: 3.2
 
 
    .. method:: makeelement(tag, attrib)
@@ -446,7 +446,7 @@
       getroot().iterfind(match). Returns an iterable yielding all matching
       elements in document order.
 
-      .. versionadded:: 2.7
+      .. versionadded:: 3.2
 
 
    .. method:: parse(source, parser=None)
@@ -559,7 +559,7 @@
       the public identifier.  *system* is the system identifier.  This method
       does not exist on the default :class:`TreeBuilder` class.
 
-      .. versionadded:: 2.7
+      .. versionadded:: 3.2
 
 
 .. _elementtree-xmlparser-objects:

Modified: python/branches/py3k/Doc/library/zipfile.rst
==============================================================================
--- python/branches/py3k/Doc/library/zipfile.rst	(original)
+++ python/branches/py3k/Doc/library/zipfile.rst	Sun Mar 21 08:16:43 2010
@@ -288,7 +288,7 @@
       member of the given :class:`ZipInfo` instance.  By default, the
       :class:`ZipInfo` constructor sets this member to :const:`ZIP_STORED`.
 
-   .. versionchanged:: 2.7
+   .. versionchanged:: 3.2
       The *compression_type* argument.
 
 The following data attributes are also available:

Modified: python/branches/py3k/Doc/reference/expressions.rst
==============================================================================
--- python/branches/py3k/Doc/reference/expressions.rst	(original)
+++ python/branches/py3k/Doc/reference/expressions.rst	Sun Mar 21 08:16:43 2010
@@ -1152,8 +1152,6 @@
 Conditional Expressions
 =======================
 
-.. versionadded:: 2.5
-
 .. index::
    pair: conditional; expression
    pair: ternary; operator


More information about the Python-checkins mailing list