summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew/3.3.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2012-10-02 08:16:19 (GMT)
committerGeorg Brandl <georg@python.org>2012-10-02 08:16:19 (GMT)
commitdc704c67513a2c561ec2e9ed48073c510300d1eb (patch)
treebab5f189bbbf6f341078bbd0867ec31895922ab3 /Doc/whatsnew/3.3.rst
parent4443762bf54682d36c61047f5b3876bdb5677a80 (diff)
downloadcpython-dc704c67513a2c561ec2e9ed48073c510300d1eb.zip
cpython-dc704c67513a2c561ec2e9ed48073c510300d1eb.tar.gz
cpython-dc704c67513a2c561ec2e9ed48073c510300d1eb.tar.bz2
In this case it is not useful to hide "threading".
Diffstat (limited to 'Doc/whatsnew/3.3.rst')
-rw-r--r--Doc/whatsnew/3.3.rst2
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.