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 belopolsky, hpesoj, mark.dickinson, pitrou, rhettinger, stargaming
Date 2009-09-03.10:06:55
SpamBayes Score 0.00010485536
Marked as misclassified No
Message-id <1251972416.91.0.634042209085.issue1766304@psf.upfronthosting.co.za>
In-reply-to
Content
[Joseph Thomson]
> Also, as I said in my closed duplicate issue, 'if value in range(lower,
> upper)' to me looks far more Pythonic than 'if value >= lower and value
> < upper'.

Note that the Pythonic spelling would be:  'if lower <= value < upper'.
 (Though that's not quite the same thing if value is not an integer.)
History
Date User Action Args
2009-09-03 10:06:57mark.dickinsonsetrecipients: + mark.dickinson, rhettinger, belopolsky, pitrou, stargaming, hpesoj
2009-09-03 10:06:56mark.dickinsonsetmessageid: <1251972416.91.0.634042209085.issue1766304@psf.upfronthosting.co.za>
2009-09-03 10:06:55mark.dickinsonlinkissue1766304 messages
2009-09-03 10:06:55mark.dickinsoncreate