[issue12028] threading._get_ident(): remove it in the doc or make it public

2011-05-30 Thread Roundup Robot
Roundup Robot added the comment: New changeset 6387aa6b496d by Victor Stinner in branch 'default': Issue #12028: fix NEWS entry http://hg.python.org/cpython/rev/6387aa6b496d -- ___ Python tracker _

[issue12028] threading._get_ident(): remove it in the doc or make it public

2011-05-30 Thread Roundup Robot
Roundup Robot added the comment: New changeset 5548197d1f22 by Victor Stinner in branch 'default': Close #12028: Make threading._get_ident() public, rename it to http://hg.python.org/cpython/rev/5548197d1f22 -- nosy: +python-dev resolution: -> fixed stage: -> committed/rejected status

[issue12028] threading._get_ident(): remove it in the doc or make it public

2011-05-24 Thread STINNER Victor
STINNER Victor added the comment: 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

[issue12028] threading._get_ident(): remove it in the doc or make it public

2011-05-23 Thread STINNER Victor
Changes by STINNER Victor : -- title: threading._get_ident(): remove it in the doc and make it public -> threading._get_ident(): remove it in the doc or make it public ___ Python tracker __