diff options
author | Georg Brandl <georg@python.org> | 2012-10-02 08:16:26 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2012-10-02 08:16:26 (GMT) |
commit | 450dbcf4219acf231f60886a924a1e28dfb8ceef (patch) | |
tree | b44e3b431f3412ceea60b49479e138d0208e8759 /Doc | |
parent | b116b3bb398aa8c12d1b0e28164e4630c315ad1c (diff) | |
parent | dc704c67513a2c561ec2e9ed48073c510300d1eb (diff) | |
download | cpython-450dbcf4219acf231f60886a924a1e28dfb8ceef.zip cpython-450dbcf4219acf231f60886a924a1e28dfb8ceef.tar.gz cpython-450dbcf4219acf231f60886a924a1e28dfb8ceef.tar.bz2 |
merge with 3.3.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.3.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst index 03a897b..f15962b 100644 --- a/Doc/whatsnew/3.3.rst +++ b/Doc/whatsnew/3.3.rst @@ -1912,7 +1912,7 @@ argument to override the default behavior of inheriting the ``deamon`` flag value from the parent thread (:issue:`6064`). The formerly private function ``_thread.get_ident`` is now available as the -public function :func:`~threading.get_ident`. This eliminates several cases of +public function :func:`threading.get_ident`. This eliminates several cases of direct access to the ``_thread`` module in the stdlib. Third party code that used ``_thread.get_ident`` should likewise be changed to use the new public interface. |