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 prasechen
Recipients larry, prasechen
Date 2020-09-04.15:54:10
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1599234850.47.0.91793785644.issue41719@roundup.psfhosted.org>
In-reply-to
Content
# I try:
>>> range(0,5,0.5)
# I hope it will (0.0,0.5,1.0,1.5,2.0,2.5,3.0,3.5,4.0,4.5). But...
Traceback (most recent call last):
  File "<pyshell#0>", line 1, in <module>
    range(0,5,0.5)
TypeError: 'float' object cannot be interpreted as an integer
History
Date User Action Args
2020-09-04 15:54:10prasechensetrecipients: + prasechen, larry
2020-09-04 15:54:10prasechensetmessageid: <1599234850.47.0.91793785644.issue41719@roundup.psfhosted.org>
2020-09-04 15:54:10prasechenlinkissue41719 messages
2020-09-04 15:54:10prasechencreate