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 mark.dickinson
Recipients akira, mark.dickinson, rhettinger
Date 2010-09-28.07:23:40
SpamBayes Score 0.074889936
Marked as misclassified No
Message-id <1285658621.86.0.84935307392.issue9959@psf.upfronthosting.co.za>
In-reply-to
Content
> [n for n in range(100) if log(2**n) != n]

Should be:

[n for n in range(100) if log(2**n, 2) != n]
History
Date User Action Args
2010-09-28 07:23:41mark.dickinsonsetrecipients: + mark.dickinson, rhettinger, akira
2010-09-28 07:23:41mark.dickinsonsetmessageid: <1285658621.86.0.84935307392.issue9959@psf.upfronthosting.co.za>
2010-09-28 07:23:40mark.dickinsonlinkissue9959 messages
2010-09-28 07:23:40mark.dickinsoncreate