summaryrefslogtreecommitdiff
path: root/Doc/library
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-05-05 09:29:50 +0000
committerGeorg Brandl <georg@python.org>2009-05-05 09:29:50 +0000
commitbaa0354ae1dfa7b0676762493f0b5e377db64cf3 (patch)
treee5082854c4bccf7bc7dad979b8881745d8ddbc62 /Doc/library
parent1aac5eccca6ed37acba69ce59856f4e3e49a2366 (diff)
downloadcpython-baa0354ae1dfa7b0676762493f0b5e377db64cf3.tar.gz
2.7 -> 3.1 versionchanges.
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/binascii.rst4
-rw-r--r--Doc/library/gc.rst2
-rw-r--r--Doc/library/hashlib.rst2
-rw-r--r--Doc/library/pdb.rst2
-rw-r--r--Doc/library/test.rst2
-rw-r--r--Doc/library/unittest.rst4
-rw-r--r--Doc/library/zlib.rst8
7 files changed, 6 insertions, 18 deletions
diff --git a/Doc/library/binascii.rst b/Doc/library/binascii.rst
index dffdd81b6a..8488743fff 100644
--- a/Doc/library/binascii.rst
+++ b/Doc/library/binascii.rst
@@ -123,10 +123,6 @@ The :mod:`binascii` module defines the following functions:
return value is the correct 32bit binary representation
regardless of sign.
-.. versionchanged:: 3.0
- The return value is unsigned and in the range [0, 2**32-1]
- regardless of platform.
-
.. function:: b2a_hex(data)
hexlify(data)
diff --git a/Doc/library/gc.rst b/Doc/library/gc.rst
index 6929a3ddd2..9092145ccd 100644
--- a/Doc/library/gc.rst
+++ b/Doc/library/gc.rst
@@ -151,7 +151,7 @@ The :mod:`gc` module provides the following functions:
>>> gc.is_tracked({"a": []})
True
- .. versionadded:: 2.7
+ .. versionadded:: 3.1
The following variable is provided for read-only access (you can mutate its
diff --git a/Doc/library/hashlib.rst b/Doc/library/hashlib.rst
index 36f386cb57..69facce793 100644
--- a/Doc/library/hashlib.rst
+++ b/Doc/library/hashlib.rst
@@ -105,7 +105,7 @@ A hash object has the following methods:
concatenation of all the arguments: ``m.update(a); m.update(b)`` is
equivalent to ``m.update(a+b)``.
- .. versionchanged:: 2.7
+ .. versionchanged:: 3.1
The Python GIL is released to allow other threads to run while
hash updates on data larger than 2048 bytes is taking place when
diff --git a/Doc/library/pdb.rst b/Doc/library/pdb.rst
index 0b29c2cd96..678ae28a0e 100644
--- a/Doc/library/pdb.rst
+++ b/Doc/library/pdb.rst
@@ -144,7 +144,7 @@ access further features, you have to do this yourself:
import pdb; pdb.Pdb(skip=['django.*']).set_trace()
- .. versionadded:: 2.7
+ .. versionadded:: 3.1
The *skip* argument.
.. method:: run(statement[, globals[, locals]])
diff --git a/Doc/library/test.rst b/Doc/library/test.rst
index 2da63ac224..353715b1c7 100644
--- a/Doc/library/test.rst
+++ b/Doc/library/test.rst
@@ -389,7 +389,7 @@ The :mod:`test.support` module defines the following classes:
manager all changes to environment variables done through this instance will
be rolled back.
- .. versionchanged:: 2.7
+ .. versionchanged:: 3.1
Added dictionary interface.
.. method:: EnvironmentVarGuard.set(envvar, value)
diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst
index b7fb2795d4..675114a11f 100644
--- a/Doc/library/unittest.rst
+++ b/Doc/library/unittest.rst
@@ -863,7 +863,7 @@ Test cases
This signals a test failure if *expr1* and *expr2* don't evaluate to the same
object.
- .. versionadded:: 2.7
+ .. versionadded:: 3.1
.. method:: assertIsNot(expr1, expr2[, msg])
@@ -872,7 +872,7 @@ Test cases
This signals a test failure if *expr1* and *expr2* evaluate to the same
object.
- .. versionadded:: 2.7
+ .. versionadded:: 3.1
.. method:: assertFalse(expr[, msg])
diff --git a/Doc/library/zlib.rst b/Doc/library/zlib.rst
index 2ab145081e..030f706d4a 100644
--- a/Doc/library/zlib.rst
+++ b/Doc/library/zlib.rst
@@ -51,10 +51,6 @@ The available exception and functions in this module are:
return value is the correct 32bit binary representation
regardless of sign.
-.. versionchanged:: 3.0
- The return value is unsigned and in the range [0, 2**32-1]
- regardless of platform.
-
.. function:: compress(string[, level])
@@ -96,10 +92,6 @@ The available exception and functions in this module are:
return value is the correct 32bit binary representation
regardless of sign.
-.. versionchanged:: 3.0
- The return value is unsigned and in the range [0, 2**32-1]
- regardless of platform.
-
.. function:: decompress(string[, wbits[, bufsize]])