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 alb_moral
Recipients alb_moral, xtreak
Date 2018-10-10.17:38:50
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1539193130.38.0.788709270274.issue34951@psf.upfronthosting.co.za>
In-reply-to
Content
Yes, I was thinking that it could be a matter of configuration of the server (?).

By the way, and just for fun, I've just realized that truncating mon at the begining of the _str2time funtion is a very bad idea because mon could also be an int.

A better place is when looking the MONTHS_LOWER array index (and possible exception is handle):
    try:
        mon = MONTHS_LOWER.index(mon[:3].lower())+1

(perhaps in 2 sentences for clarity)

OK, waiting for experts' comments.

I'm really enjoying Python.
History
Date User Action Args
2018-10-10 17:38:50alb_moralsetrecipients: + alb_moral, xtreak
2018-10-10 17:38:50alb_moralsetmessageid: <1539193130.38.0.788709270274.issue34951@psf.upfronthosting.co.za>
2018-10-10 17:38:50alb_morallinkissue34951 messages
2018-10-10 17:38:50alb_moralcreate