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 genetics_jo
Recipients ezio.melotti, genetics_jo, mrabarnett
Date 2016-12-05.18:51:06
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1480963866.63.0.475496093421.issue28880@psf.upfronthosting.co.za>
In-reply-to
Content
Right about the command prompt!  My bad.  However, the new language you provided gives me the following:

>>> list(range(9))
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: 'list' object is not callable
>>> list(range(0, 10))
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: 'list' object is not callable
>>> list(range(0, 10, 2))
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: 'list' object is not callable
>>>
History
Date User Action Args
2016-12-05 18:51:06genetics_josetrecipients: + genetics_jo, ezio.melotti, mrabarnett
2016-12-05 18:51:06genetics_josetmessageid: <1480963866.63.0.475496093421.issue28880@psf.upfronthosting.co.za>
2016-12-05 18:51:06genetics_jolinkissue28880 messages
2016-12-05 18:51:06genetics_jocreate