Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
705d9d5c
Commit
705d9d5c
authored
May 05, 2009
by
Georg Brandl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
2.7 -> 3.1 versionchanges.
parent
b0f79c8d
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
7 additions
and
20 deletions
+7
-20
Doc/c-api/init.rst
Doc/c-api/init.rst
+1
-2
Doc/library/binascii.rst
Doc/library/binascii.rst
+0
-4
Doc/library/gc.rst
Doc/library/gc.rst
+1
-1
Doc/library/hashlib.rst
Doc/library/hashlib.rst
+1
-1
Doc/library/pdb.rst
Doc/library/pdb.rst
+1
-1
Doc/library/test.rst
Doc/library/test.rst
+1
-1
Doc/library/unittest.rst
Doc/library/unittest.rst
+2
-2
Doc/library/zlib.rst
Doc/library/zlib.rst
+0
-8
No files found.
Doc/c-api/init.rst
View file @
705d9d5c
...
...
@@ -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:
...
...
Doc/library/binascii.rst
View file @
705d9d5c
...
...
@@ -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)
...
...
Doc/library/gc.rst
View file @
705d9d5c
...
...
@@ -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
...
...
Doc/library/hashlib.rst
View file @
705d9d5c
...
...
@@ -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
...
...
Doc/library/pdb.rst
View file @
705d9d5c
...
...
@@ -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]])
...
...
Doc/library/test.rst
View file @
705d9d5c
...
...
@@ -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
)
...
...
Doc/library/unittest.rst
View file @
705d9d5c
...
...
@@ -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])
...
...
Doc/library/zlib.rst
View file @
705d9d5c
...
...
@@ -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]])
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment