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 exarkun
Recipients exarkun, yuri
Date 2010-09-26.13:55:26
SpamBayes Score 0.00025640117
Marked as misclassified No
Message-id <1285509328.54.0.218449539257.issue9953@psf.upfronthosting.co.za>
In-reply-to
Content
You can't rely on id() to return distinct values across different processes.  It guarantees uniqueness *within a single process* (at any particular moment).

In other words, you're misusing id() here.  This is not a Python bug.
History
Date User Action Args
2010-09-26 13:55:28exarkunsetrecipients: + exarkun, yuri
2010-09-26 13:55:28exarkunsetmessageid: <1285509328.54.0.218449539257.issue9953@psf.upfronthosting.co.za>
2010-09-26 13:55:26exarkunlinkissue9953 messages
2010-09-26 13:55:26exarkuncreate