diff options
author | R David Murray <rdmurray@bitdance.com> | 2012-10-02 02:10:53 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2012-10-02 02:10:53 (GMT) |
commit | 6c617163a309126ddda7e82a61dcf23da138c369 (patch) | |
tree | 8b6f318252f8a2a91026552aa73f2cd355ddba36 /Doc | |
parent | 6e7bd6545384c8939ddc87aded6a20b8dd096e9e (diff) | |
parent | 0bbfd6b817631949861bb5a5a3a8a15bdb0046a4 (diff) | |
download | cpython-6c617163a309126ddda7e82a61dcf23da138c369.zip cpython-6c617163a309126ddda7e82a61dcf23da138c369.tar.gz cpython-6c617163a309126ddda7e82a61dcf23da138c369.tar.bz2 |
Merge: Add threading.get_ident to whatsnew.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.3.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst index c4065b3..03a897b 100644 --- a/Doc/whatsnew/3.3.rst +++ b/Doc/whatsnew/3.3.rst @@ -1911,6 +1911,12 @@ The :class:`threading.Thread` constructor now accepts a ``daemon`` keyword 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 +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. + time ---- |