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 vstinner
Recipients brett.cannon, docs@python, eric.araujo, georg.brandl, pitrou, rhettinger, vstinner
Date 2011-05-24.10:25:42
SpamBayes Score 0.000893723
Marked as misclassified No
Message-id <1306232744.28.0.51296155895.issue12028@psf.upfronthosting.co.za>
In-reply-to
Content
threading_get_ident.patch: make get_ident() public, replace threading._get_ident() by threading.get_ident().

According to this patch, get_ident() function *is* used: it is used by the logging and reprlib modules (and many tests). My patch avoids the usage of the low-level module, _thread_, in logging and reprlib.

I adapted signal.pthread_kill() documentation to replace threading.current_thread().ident by threading.get_ident().
History
Date User Action Args
2011-05-24 10:25:44vstinnersetrecipients: + vstinner, brett.cannon, georg.brandl, rhettinger, pitrou, eric.araujo, docs@python
2011-05-24 10:25:44vstinnersetmessageid: <1306232744.28.0.51296155895.issue12028@psf.upfronthosting.co.za>
2011-05-24 10:25:43vstinnerlinkissue12028 messages
2011-05-24 10:25:43vstinnercreate