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 omnifarious
Recipients
Date 2003-12-11.03:13:04
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
This works for the PowerPC Python compiled with gcc 3.3
on OS X using fink.  I suspect it's broader based than
that, but I don't have the ability to check properly.

Here's how to make it segment fault:

x = (basestring,)
for i in xrange(0, 1000000):
   x = (x,)
issubclass(str, x)

At least, it segment faults at the interactive prompt
this way.  I don't know if it does when it's executed
from a file.
History
Date User Action Args
2007-08-23 14:18:53adminlinkissue858016 messages
2007-08-23 14:18:53admincreate