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 yegle
Recipients yegle
Date 2017-11-18.00:07:59
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1510963679.47.0.213398074469.issue32065@psf.upfronthosting.co.za>
In-reply-to
Content
Hmm I think this also applies to list_listiterator. In general I'd expect these to be true:

l = [1,2,3]
r = range(3)

assert len(l) == len(reversed(l))
assert len(r) == len(reversed(r))
History
Date User Action Args
2017-11-18 00:07:59yeglesetrecipients: + yegle
2017-11-18 00:07:59yeglesetmessageid: <1510963679.47.0.213398074469.issue32065@psf.upfronthosting.co.za>
2017-11-18 00:07:59yeglelinkissue32065 messages
2017-11-18 00:07:59yeglecreate