Skip to content

Commit

Permalink
bpo-36084: Add threading Native ID information to What's New document…
Browse files Browse the repository at this point in the history
…ation (pythonGH-14845)
  • Loading branch information
jaketesler authored and vstinner committed Jul 30, 2019
1 parent eca7ffc commit 84846b0
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Doc/library/threading.rst
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ since it is impossible to detect the termination of alien threads.
system-wide) from the time the thread is created until the thread
has been terminated.

.. availability:: Require :func:`get_native_id` function.
.. availability:: Requires :func:`get_native_id` function.

.. versionadded:: 3.8

Expand Down
16 changes: 12 additions & 4 deletions Doc/whatsnew/3.8.rst
Original file line number Diff line number Diff line change
Expand Up @@ -768,10 +768,18 @@ in a standardized and extensible format, and offers several other benefits.
threading
---------

Add a new :func:`threading.excepthook` function which handles uncaught
:meth:`threading.Thread.run` exception. It can be overridden to control how
uncaught :meth:`threading.Thread.run` exceptions are handled.
(Contributed by Victor Stinner in :issue:`1230540`.)
* Add a new :func:`threading.excepthook` function which handles uncaught
:meth:`threading.Thread.run` exception. It can be overridden to control how
uncaught :meth:`threading.Thread.run` exceptions are handled.
(Contributed by Victor Stinner in :issue:`1230540`.)

* Add a new
:func:`threading.get_native_id` function and a :data:`~threading.Thread.native_id`
attribute to the :class:`threading.Thread` class. These return the native
integral Thread ID of the current thread assigned by the kernel.
This feature is only available on certain platforms, see
:func:`get_native_id <threading.get_native_id>` for more information.
(Contributed by Jake Tesler in :issue:`36084`.)


tokenize
Expand Down

0 comments on commit 84846b0

Please sign in to comment.