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 Alexander.Belopolsky, akitada, christian.heimes, josm, loewis, mark.dickinson, rhettinger, robertwb, zanella
Date 2010-05-01.07:50:09
SpamBayes Score 0.00024267491
Marked as misclassified No
Message-id <1272700212.85.0.199948195928.issue1533@psf.upfronthosting.co.za>
In-reply-to
Content
Alexander: range *does* still accept such arguments (in 2.7);  just not floats:

>>> from decimal import Decimal
>>> range(Decimal(20), Decimal(20))
[]
>>> range(Decimal('1e100'), Decimal('1e100'))
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: range() integer start argument expected, got Decimal.
History
Date User Action Args
2010-05-01 07:50:13mark.dickinsonsetrecipients: + mark.dickinson, loewis, rhettinger, christian.heimes, josm, robertwb, zanella, akitada, Alexander.Belopolsky
2010-05-01 07:50:12mark.dickinsonsetmessageid: <1272700212.85.0.199948195928.issue1533@psf.upfronthosting.co.za>
2010-05-01 07:50:09mark.dickinsonlinkissue1533 messages
2010-05-01 07:50:09mark.dickinsoncreate