Message 52501 - Python tracker

Message52501

Author agthorr
Recipients
Date 2007-04-21.13:29:10
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Yes, I realized the same thing while staring off into space before getting out of bed this morning. :-)

Here's a simpler version:

x = [0,0,0,0]
self.assertRaises(MemoryError, x.__mul__, sys.maxint/2+1)
self.assertRaises(MemoryError, x.__imul__, sys.maxint/2+1)
History
Date User Action Args
2007-08-23 15:58:11adminlinkissue1704621 messages
2007-08-23 15:58:11admincreate