Weird AttributeError With Imports
Peter Otten
__peter__ at web.de
Sun Oct 28 13:25:08 EDT 2007
Juha S. wrote:
> I'm getting a "AttributeError: 'module' object has no attribute 'clock'"
> when importing a module from within two packages related to the line:
> "self.lastTime = time.clock()" in the __init__() of the class Time in
> the target module.
You probably have a time module that you wrote yourself and which is now
hiding the one in python's standard library. Was your mytime.py formerly
named time.py, and if so, did you remove the corresponding time.pyc?
Peter
More information about the Python-list
mailing list