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 mintaka
Recipients mintaka
Date 2009-08-22.19:12:18
SpamBayes Score 1.5283184e-07
Marked as misclassified No
Message-id <1250968340.58.0.478477907223.issue6762@psf.upfronthosting.co.za>
In-reply-to
Content
String representation of xrange return keyword with value.

foo = xrange(5)
print foo
>>> xrange(5)
foo.__str__() 
>>> xrange(5)

I think, that expected result should be somethink like this:
>>> <xrange object at 0x00AFB970>
History
Date User Action Args
2009-08-22 19:12:20mintakasetrecipients: + mintaka
2009-08-22 19:12:20mintakasetmessageid: <1250968340.58.0.478477907223.issue6762@psf.upfronthosting.co.za>
2009-08-22 19:12:19mintakalinkissue6762 messages
2009-08-22 19:12:19mintakacreate