]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
2.7 -> 3.1 versionchanges.
authorGeorg Brandl <georg@python.org>
Tue, 5 May 2009 09:29:50 +0000 (09:29 +0000)
committerGeorg Brandl <georg@python.org>
Tue, 5 May 2009 09:29:50 +0000 (09:29 +0000)
Doc/c-api/init.rst
Doc/library/binascii.rst
Doc/library/gc.rst
Doc/library/hashlib.rst
Doc/library/pdb.rst
Doc/library/test.rst
Doc/library/unittest.rst
Doc/library/zlib.rst

index ab4734fc6c8f97033cecb0a3226c2fd3b8d11190..299af7f338a55e6d61ef05acc934655a0912ce12 100644 (file)
@@ -824,8 +824,7 @@ perform any Python API calls.
    other system thread.  If it is a Python thread, it doesn't matter if it holds
    the global interpreter lock or not.
 
-   .. versionadded:: 2.7
-
+   .. versionadded:: 3.1
 
 
 .. _profiling:
index dffdd81b6a4d451a076f28b985f58c32c47c94be..8488743fff12b0f31c4b99f1083a438e18b51e7d 100644 (file)
@@ -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)
index 6929a3ddd2ee046da8de6ea7105bbdefaae7c739..9092145ccd097354cf245eea8b163bffc13fb42a 100644 (file)
@@ -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
index 36f386cb57839427101b34d1784f1aa3791d8a82..69facce7936396455e1440b53992d5c7dc1804d1 100644 (file)
@@ -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
index 0b29c2cd9697279b53b8cbe8839eba3bfbf49072..678ae28a0e37c69dae409c9701dd029b8b4ace6b 100644 (file)
@@ -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]])
index 2da63ac224f04a109d666e1412855faf30e66d84..353715b1c7fc778f37832971b570e33b0f1c915b 100644 (file)
@@ -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)
index b7fb2795d4d04522f0db93f93673da2498b422bb..675114a11f8e64809b31b4924626ed6f71c154e2 100644 (file)
@@ -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])
index 2ab145081ebdf898cd01fef487635037332b4599..030f706d4ace07cc6fef535c4216505ea4a3929f 100644 (file)
@@ -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]])