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 davidar
Recipients davidar, ggenellina, pitrou
Date 2009-07-25.08:38:22
SpamBayes Score 1.5240629e-09
Marked as misclassified No
Message-id <1248511105.45.0.993420786193.issue6562@psf.upfronthosting.co.za>
In-reply-to
Content
thread.get_ident() returns 1192 and 1560 in the cases where there is no
error, and 1316 in the case where the error is thrown. Doesn't seem
particularly unusual, and shows get_ident() isn't throwing the error itself.

I also noticed that there is a warning right before the exception is raised:

C:\Python26\lib\threading.py:803: RuntimeWarning: tp_compare didn't
return -1 or -2 for exception
  return _active[_get_ident()]

I've attached the relevant snippets of code. As you can see
OSMTileProvider (the class that is triggering the exception) doesn't
actually do all that much, and the two other classes derived from
DynamicTileProvider function correctly so I don't understand what it is
about this specific class.
History
Date User Action Args
2009-07-25 08:38:25davidarsetrecipients: + davidar, ggenellina, pitrou
2009-07-25 08:38:25davidarsetmessageid: <1248511105.45.0.993420786193.issue6562@psf.upfronthosting.co.za>
2009-07-25 08:38:24davidarlinkissue6562 messages
2009-07-25 08:38:23davidarcreate