summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/collections.rst2
-rw-r--r--Doc/library/difflib.rst4
-rw-r--r--Doc/library/functions.rst4
-rw-r--r--Doc/library/math.rst6
-rw-r--r--Doc/library/msvcrt.rst8
-rw-r--r--Doc/library/stdtypes.rst5
-rw-r--r--Doc/library/sys.rst2
7 files changed, 0 insertions, 31 deletions
diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst
index b1c2f99..b650462 100644
--- a/Doc/library/collections.rst
+++ b/Doc/library/collections.rst
@@ -99,8 +99,6 @@ particular functionality, for example::
Unix. They are also useful for tracking transactions and other pools of data
where only the most recent activity is of interest.
- .. versionchanged:: 2.6
- Added *maxlen* parameter.
Deque objects support the following methods:
diff --git a/Doc/library/difflib.rst b/Doc/library/difflib.rst
index 3b17d04..34dbcfd 100644
--- a/Doc/library/difflib.rst
+++ b/Doc/library/difflib.rst
@@ -380,10 +380,6 @@ use :meth:`set_seq2` to set the commonly used sequence once and call
.. XXX Explain why a dummy is used!
- .. versionchanged:: 2.5
- The guarantee that adjacent triples always describe non-adjacent blocks was
- implemented.
-
::
>>> s = SequenceMatcher(None, "abxcd", "abcd")
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst
index 48efff5..ebb7a6c 100644
--- a/Doc/library/functions.rst
+++ b/Doc/library/functions.rst
@@ -921,8 +921,6 @@ available. They are listed here in alphabetical order.
``round(0.5)`` and ``round(-0.5)`` are ``0``, and ``round(1.5)`` is
``2``). Delegates to ``x.__round__(n)``.
- .. versionchanged:: 2.6
-
.. function:: set([iterable])
:noindex:
@@ -1072,8 +1070,6 @@ available. They are listed here in alphabetical order.
Return the :class:`Real` value *x* truncated to an :class:`Integral` (usually
a long integer). Delegates to ``x.__trunc__()``.
- .. versionadded:: 2.6
-
.. function:: tuple([iterable])
diff --git a/Doc/library/math.rst b/Doc/library/math.rst
index dc8c74a..958d60b 100644
--- a/Doc/library/math.rst
+++ b/Doc/library/math.rst
@@ -36,8 +36,6 @@ Number-theoretic and representation functions:
Return *x* with the sign of *y*. ``copysign`` copies the sign bit of an IEEE
754 float, ``copysign(1, -0.0)`` returns *-1.0*.
- ..versionadded:: 2.6
-
.. function:: fabs(x)
@@ -78,8 +76,6 @@ Number-theoretic and representation functions:
Checks if the float *x* is positive or negative infinite.
- ..versionadded:: 2.6
-
.. function:: isnan(x)
@@ -88,8 +84,6 @@ Number-theoretic and representation functions:
``inf / inf`` or any operation involving a NaN, e.g. ``nan * 1``, return
a NaN.
- ..versionadded:: 2.6
-
.. function:: ldexp(x, i)
diff --git a/Doc/library/msvcrt.rst b/Doc/library/msvcrt.rst
index a305788..678ba7a 100644
--- a/Doc/library/msvcrt.rst
+++ b/Doc/library/msvcrt.rst
@@ -103,8 +103,6 @@ Console I/O
Wide char variant of :func:`getch`, returning a Unicode value.
- .. versionadded:: 2.6
-
.. function:: getche()
@@ -116,8 +114,6 @@ Console I/O
Wide char variant of :func:`getche`, returning a Unicode value.
- .. versionadded:: 2.6
-
.. function:: putch(char)
@@ -128,8 +124,6 @@ Console I/O
Wide char variant of :func:`putch`, accepting a Unicode value.
- .. versionadded:: 2.6
-
.. function:: ungetch(char)
@@ -141,8 +135,6 @@ Console I/O
Wide char variant of :func:`ungetch`, accepting a Unicode value.
- .. versionadded:: 2.6
-
.. _msvcrt-other:
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst
index 9763cba..554cbc5 100644
--- a/Doc/library/stdtypes.rst
+++ b/Doc/library/stdtypes.rst
@@ -351,8 +351,6 @@ Notes:
float also accepts the strings "nan" and "inf" with an optional prefix "+"
or "-" for Not a Number (NaN) and positive or negative infinity.
- .. versionadded:: 2.6
-
.. XXXJH exceptions: overflow (when? what operations?) zerodivision
@@ -2017,9 +2015,6 @@ Files have the following methods:
Note that not all file objects are seekable.
- .. versionchanged:: 2.6
- Passing float values as offset has been deprecated.
-
.. method:: file.tell()
diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst
index 0205937..4182a0b 100644
--- a/Doc/library/sys.rst
+++ b/Doc/library/sys.rst
@@ -371,8 +371,6 @@ always available.
take. It's usually ``2**31 - 1`` on a 32-bit platform and ``2**63 - 1`` on a
64-bit platform.
- .. versionadded:: 3.0
-
.. data:: maxunicode