Message6206

Author itsadok
Recipients itsadok
Date 2010-10-25.16:41:42
SpamBayes Score 1.085155e-08
Marked as misclassified No
Message-id <1288024904.46.0.823052767032.issue1668@psf.upfronthosting.co.za>
In-reply-to
Content
itsadok@dev001:~$ python
Python 2.6.6 (r266:84292, Sep 15 2010, 16:22:56) 
[GCC 4.4.5] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import time
>>> time.strptime('','')
time.struct_time(tm_year=1900, tm_mon=1, tm_mday=1, tm_hour=0, tm_min=0, tm_sec=0, tm_wday=0, tm_yday=1, tm_isdst=-1)
>>> 
itsadok@dev001:~$ jython
Jython 2.5.1 (Release_2_5_1:6813, Sep 26 2009, 13:47:54) 
[Java HotSpot(TM) Server VM (Sun Microsystems Inc.)] on java1.6.0_14
Type "help", "copyright", "credits" or "license" for more information.
>>> import time
>>> time.strptime('','')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ValueError: time data did not match format:  data=  fmt=
>>>
History
Date User Action Args
2010-10-25 16:41:44itsadoksetrecipients: + itsadok
2010-10-25 16:41:44itsadoksetmessageid: <1288024904.46.0.823052767032.issue1668@psf.upfronthosting.co.za>
2010-10-25 16:41:44itsadoklinkissue1668 messages
2010-10-25 16:41:43itsadokcreate