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 dstufft
Recipients dstufft, rhettinger
Date 2013-08-24.19:29:51
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1377372591.19.0.563294988344.issue18826@psf.upfronthosting.co.za>
In-reply-to
Content
As an additional note this works how I would expect it to work if you're using sorted() instead of reversed() which I think is a stronger point in the favor of making reversed() work this way as well.

>>> sorted(x for x in [1, 2, 3])
[1, 2, 3]
History
Date User Action Args
2013-08-24 19:29:51dstufftsetrecipients: + dstufft, rhettinger
2013-08-24 19:29:51dstufftsetmessageid: <1377372591.19.0.563294988344.issue18826@psf.upfronthosting.co.za>
2013-08-24 19:29:51dstufftlinkissue18826 messages
2013-08-24 19:29:51dstufftcreate