Comment by graemep
10 months ago
Yes, that works if you do:
from foo import nonexistent
but if you do:
import foo
foo.nonexistent()
You get a run time error.
A lot of the time with Python you will be importing classes so it will be mostly run time errors.
No comments yet
Contribute on Hacker News ↗