I have a python startup file that I use to do a couple things on startup. For some reason if I do this:
import print_statement
print_statement.install()
from __past__ import print_statement
we get a traceback with:
Traceback (most recent call last):
File "C:\Users\csm10495\pystartup.py", line 81, in <module>
from __past__ import print_statement
ModuleNotFoundError: No module named '__past__'
Though if I do the import in interactive later, it works. Does this have to do with this not working in modules? Can we make this work here? Thanks!
I have a python startup file that I use to do a couple things on startup. For some reason if I do this:
we get a traceback with:
Though if I do the import in interactive later, it works. Does this have to do with this not working in modules? Can we make this work here? Thanks!