]> granicus.if.org Git - python/commitdiff
murder some versionadded and versionchanged directives in their beds
authorBenjamin Peterson <benjamin@python.org>
Sat, 16 Aug 2008 02:59:55 +0000 (02:59 +0000)
committerBenjamin Peterson <benjamin@python.org>
Sat, 16 Aug 2008 02:59:55 +0000 (02:59 +0000)
Doc/library/ast.rst
Doc/library/csv.rst
Doc/library/ctypes.rst
Doc/library/inspect.rst
Doc/library/logging.rst
Doc/library/math.rst
Doc/library/pdb.rst
Doc/library/reprlib.rst
Doc/library/stdtypes.rst
Doc/library/sys.rst
Doc/library/textwrap.rst

index b10b9cbd22958aa8715c53959f6bf76831b682d7..8590a480b6aabb4863dbcddd0bb23026d0ae7a9e 100644 (file)
@@ -9,12 +9,6 @@ Abstract Syntax Trees
 .. sectionauthor:: Martin v. Löwis <martin@v.loewis.de>
 .. sectionauthor:: Georg Brandl <georg@python.org>
 
-.. versionadded:: 2.5
-   The low-level ``_ast`` module containing only the node classes.
-
-.. versionadded:: 2.6
-   The high-level ``ast`` module containing all helpers.
-
 
 The :mod:`ast` module helps Python applications to process trees of the Python
 abstract syntax grammar.  The abstract syntax itself might change with each
@@ -113,8 +107,6 @@ The abstract grammar is currently defined as follows:
 :mod:`ast` Helpers
 ------------------
 
-.. versionadded:: 2.6
-
 Apart from the node classes, :mod:`ast` module defines these utility functions
 and classes for traversing abstract syntax trees:
 
index 588a45cedf3a98bc43934cbc4e7a113bab2af63a..7752ac707973e67ccc11969a51407c3a2ce93d95 100644 (file)
@@ -381,7 +381,6 @@ DictReader objects have the following public attribute:
    initialized upon first access or when the first record is read from the
    file.
 
-   .. versionchanged:: 2.6
 
 
 Writer Objects
index f422bf32980d354dcc8be206e409c3d0da394325..a5e16df8279bb9953fae3844c3a5985653f9f0db 100644 (file)
@@ -1859,10 +1859,6 @@ Utility functions
 
    The exact functionality is system dependent.
 
-   .. versionchanged:: 2.6
-      Windows only: ``find_library("m")`` or
-      ``find_library("c")`` return the result of a call to
-      ``find_msvcrt()``.
 
 .. function:: find_msvcrt()
    :module: ctypes.util
index 98ecbcb1de45ba831c5c90749e84ba4ca996b803..6918a25ee57e527944765c74b9dfdd3c75655659 100644 (file)
@@ -364,8 +364,6 @@ Retrieving source code
    of code.  Any whitespace that can be uniformly removed from the second line
    onwards is removed.  Also, all tabs are expanded to spaces.
 
-   .. versionadded:: 2.6
-
 
 .. _inspect-classes-functions:
 
index 734e3b22dfdac04c0ecf54ea1e08a75b59e86467..43e738ed1b0c5be8f202d16dca8ff0e83bf47491 100644 (file)
@@ -2315,10 +2315,6 @@ The ``class`` entry indicates the handler's class (as determined by :func:`eval`
 in the ``logging`` package's namespace). The ``level`` is interpreted as for
 loggers, and ``NOTSET`` is taken to mean "log everything".
 
-.. versionchanged:: 2.6
-  Added support for resolving the handler's class as a dotted module and class
-  name.
-
 The ``formatter`` entry indicates the key name of the formatter for this
 handler. If blank, a default formatter (``logging._defaultFormatter``) is used.
 If a name is specified, it must appear in the ``[formatters]`` section and have
index da38305aa43c36fdcf41063c343a1d4089b8c795..a7dd4ddb79b48d27b46414e5ac4449512911e7d1 100644 (file)
@@ -88,8 +88,6 @@ Number-theoretic and representation functions:
       The accuracy of fsum() may be impaired on builds that use
       extended precision addition and then double-round the results.
 
-   .. versionadded:: 2.6
-
 
 .. function:: isinf(x)
 
index ba6c1b5bc042b9c3874293f497e655f1e4bb8050..adbff79e355d32ac482fb00078ddbfd0882a5e11 100644 (file)
@@ -265,8 +265,6 @@ unt(il)
    Continue execution until the line with the the line number greater than the
    current one is reached or when returning from current frame.
 
-   .. versionadded:: 2.6
-
 r(eturn)
    Continue execution until the current function returns.
 
index a0664c7e0b1164c9d480b0ea1d235196bde773d1..e50344245cd1cd618a28d2f6cf2b942080faeca6 100644 (file)
@@ -62,9 +62,6 @@ which format specific object types.
    default is ``4`` for :attr:`maxdict`, ``5`` for :attr:`maxarray`, and  ``6`` for
    the others.
 
-   .. versionadded:: 2.4
-      :attr:`maxset`, :attr:`maxfrozenset`, and :attr:`set`.
-
 
 .. attribute:: Repr.maxlong
 
index c5b32ccec8d27291a88964ac0a825b1ad6eee445..5ac062a52c0e80834f0be52d992089827fb994ea 100644 (file)
@@ -1651,25 +1651,16 @@ The constructors for both classes work the same:
 
       Update the set, adding elements from *other*.
 
-      .. versionchanged:: 2.6
-         Accepts multiple input iterables.
-
    .. method:: intersection_update(other, ...)
                set &= other & ...
 
       Update the set, keeping only elements found in it and *other*.
 
-      .. versionchanged:: 2.6
-         Accepts multiple input iterables.
-
    .. method:: difference_update(other, ...)
                set -= other | ...
 
       Update the set, removing elements found in others.
 
-      .. versionchanged:: 2.6
-         Accepts multiple input iterables.
-
    .. method:: symmetric_difference_update(other)
                set ^= other
 
index 3f73ec2127b3452fd5046d45493bb0af9fc09078..c394f869d999aabf75bf0fa3cc070c9d6d52dd0e 100644 (file)
@@ -332,8 +332,6 @@ always available.
    func:`getsizeof` calls the object's __sizeof__ method and adds an additional
    garbage collector overhead if the object is managed by the garbage collector.
 
-   .. versionadded:: 2.6
-
 
 .. function:: _getframe([depth])
 
index a18a80191b8d008541dde8cbac245c2227c0a5f5..883d5f9b04445a029742047b0df4c0f0ab779026 100644 (file)
@@ -181,8 +181,6 @@ indentation from strings that have unwanted whitespace to the left of the text.
       you want truly insecable words.  Default behaviour in previous versions
       was to always allow breaking hyphenated words.
 
-      .. versionadded:: 2.6
-
 
    :class:`TextWrapper` also provides two public methods, analogous to the
    module-level convenience functions: