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 ron_adam
Recipients ron_adam
Date 2013-08-14.16:55:43
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1376499343.4.0.632911217056.issue18740@psf.upfronthosting.co.za>
In-reply-to
Content
Shouldn't at least isdecimal return True?

>>> '123.0'.isdecimal()
False
>>> '123.0'.isalnum()
False
>>> '123.0'.isnumeric()
False
>>> '123.0'.isdigit()
False
History
Date User Action Args
2013-08-14 16:55:43ron_adamsetrecipients: + ron_adam
2013-08-14 16:55:43ron_adamsetmessageid: <1376499343.4.0.632911217056.issue18740@psf.upfronthosting.co.za>
2013-08-14 16:55:43ron_adamlinkissue18740 messages
2013-08-14 16:55:43ron_adamcreate