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 sigzegv
Recipients sigzegv
Date 2014-10-21.21:37:22
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1413927442.61.0.0173786511111.issue22690@psf.upfronthosting.co.za>
In-reply-to
Content
I usually convert date string to time with strptime formating. I noticed importing Gtk breaks strptime parsing for abbreviated month name and weekday name :

>>> import time
>>> time.strptime("Mon, 20 Oct 2014 08:00:32 +0000", "%a, %d %b %Y %H:%M:%S %z")
time.struct_time(tm_year=2014, tm_mon=10, tm_mday=20, tm_hour=8, tm_min=0, tm_sec=32, tm_wday=0, tm_yday=293, tm_isdst=-1)
>>> from gi.repository import Gtk
>>> time.strptime("Mon, 20 Oct 2014 08:00:32 +0000", "%a, %d %b %Y %H:%M:%S %z")
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/lib/python3.4/_strptime.py", line 494, in _strptime_time
    tt = _strptime(data_string, format)[0]
  File "/usr/lib/python3.4/_strptime.py", line 337, in _strptime
    (data_string, format))
ValueError: time data 'Mon, 20 Oct 2014 08:00:32 +0000' does not match format '%a, %d %b %Y %H:%M:%S %z'
>>> 

Is there a workaround for Gtk + time ?
History
Date User Action Args
2014-10-21 21:37:22sigzegvsetrecipients: + sigzegv
2014-10-21 21:37:22sigzegvsetmessageid: <1413927442.61.0.0173786511111.issue22690@psf.upfronthosting.co.za>
2014-10-21 21:37:22sigzegvlinkissue22690 messages
2014-10-21 21:37:22sigzegvcreate