I have a blah.time module where I perform some health checks and wrapper functions around the usual time and date operations:
import time def sleep(n): time.sleep(n)
When I call sleep , it just generates the maximum recursion error. I assume the namespace is incorrect, so I tried to use import time as _time , but I still get the same error.
How can I refer to the time module from my own module to prevent this namespace conflict?
source share