Python & time.strptime()

LordCoven

Registered
Hey there,

I noticed today (much to my annoyance) that the strptime function is missing from the time module in both the Python 2.1 and 2.2 installs on my MacOS X (10.1.5) machine. The 2.1 install is from Tony Lownds and the 2.2 I built from source. I get:

>>> import time
>>> time.strptime
Traceback (most recent call last):
File "<stdin>", line 1, in ?
AttributeError: 'module' object has no attribute 'strptime'

when looking for it. Has anyone else noticed this? Found a fix?

Cheers,

C
 
Back
Top