This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author jaketesler
Recipients jaketesler
Date 2019-02-22.22:46:11
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1550875571.41.0.297490361597.issue36084@roundup.psfhosted.org>
In-reply-to
Content
This functionality adds a native Thread ID to threading.Thread objects. This ID (TID), similar to the PID of a process, is assigned by the OS (kernel) and is generally used for externally monitoring resources consumed by the running thread (or process).
This does not replace the `ident` attribute within Thread objects, which is assigned by the Python interpreter and is guaranteed as unique for the lifetime of the Python instance.
History
Date User Action Args
2019-02-22 22:46:11jaketeslersetrecipients: + jaketesler
2019-02-22 22:46:11jaketeslersetmessageid: <1550875571.41.0.297490361597.issue36084@roundup.psfhosted.org>
2019-02-22 22:46:11jaketeslerlinkissue36084 messages
2019-02-22 22:46:11jaketeslercreate