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 benjamin.peterson
Recipients benjamin.peterson
Date 2008-04-09.21:28:05
SpamBayes Score 0.061685905
Marked as misclassified No
Message-id <1207776487.99.0.710555963511.issue2603@psf.upfronthosting.co.za>
In-reply-to
Content
This patch makes this work:
>>> range(4) == range(4)
True

This is in similar fashion to dict.keys
>>> {1:2}.keys() == {1:2}.keys()
True

Tests included.
History
Date User Action Args
2008-04-09 21:28:08benjamin.petersonsetspambayes_score: 0.0616859 -> 0.061685905
recipients: + benjamin.peterson
2008-04-09 21:28:08benjamin.petersonsetspambayes_score: 0.0616859 -> 0.0616859
messageid: <1207776487.99.0.710555963511.issue2603@psf.upfronthosting.co.za>
2008-04-09 21:28:06benjamin.petersonlinkissue2603 messages
2008-04-09 21:28:06benjamin.petersoncreate