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 gregory.p.smith
Recipients gps, gregory.p.smith, pitrou
Date 2009-11-04.23:19:01
SpamBayes Score 0.053189218
Marked as misclassified No
Message-id <1257376742.74.0.351226963644.issue7264@psf.upfronthosting.co.za>
In-reply-to
Content
How about defining this in threading.py:

def _enumerate():
    """Internal use only: enumerate() without the lock."""
    return _active.values() + _limbo.values()

And calling it from _threading_local instead of accessing _active and
_limbo directly.
History
Date User Action Args
2009-11-04 23:19:02gregory.p.smithsetrecipients: + gregory.p.smith, pitrou, gps
2009-11-04 23:19:02gregory.p.smithsetmessageid: <1257376742.74.0.351226963644.issue7264@psf.upfronthosting.co.za>
2009-11-04 23:19:01gregory.p.smithlinkissue7264 messages
2009-11-04 23:19:01gregory.p.smithcreate