2021-01-17 16:01:58 +03:00
|
|
|
Imported foo.__init__ as foo
|
2021-01-31 05:13:21 +03:00
|
|
|
<module 'foo' from ...>
|
2021-02-18 02:45:07 +03:00
|
|
|
AttributeError("'module' object has no attribute 'bar'")
|
2021-01-17 16:01:58 +03:00
|
|
|
Imported bar.__init__ as foo.bar
|
|
|
|
imported baz.krk as foo.bar.baz
|
2021-01-31 05:13:21 +03:00
|
|
|
<module 'foo.bar.baz' from ...>
|
|
|
|
<module 'foo' from ...>
|
|
|
|
<module 'foo.bar' from ...>
|
|
|
|
<module 'foo.bar.baz' from ...>
|
2021-01-17 16:01:58 +03:00
|
|
|
This is it!
|
2021-01-31 05:13:21 +03:00
|
|
|
<module 'foo' from ...>
|
|
|
|
<module 'foo.bar' from ...>
|
|
|
|
<module 'foo.bar.baz' from ...>
|
2021-01-17 16:01:58 +03:00
|
|
|
This is it!
|
2021-01-31 05:13:21 +03:00
|
|
|
<module 'foo.bar.baz' from ...>
|
2021-01-17 16:01:58 +03:00
|
|
|
This is it!
|
2021-02-18 02:45:07 +03:00
|
|
|
NameError("Undefined variable 'foo'.")
|
2021-01-31 05:13:21 +03:00
|
|
|
<module 'foo.bar.baz' from ...>
|
2021-01-17 16:01:58 +03:00
|
|
|
This is it!
|
2021-02-18 02:45:07 +03:00
|
|
|
NameError("Undefined variable 'foo'.")
|
2021-01-17 16:01:58 +03:00
|
|
|
This is it!
|
2021-02-18 02:45:07 +03:00
|
|
|
NameError("Undefined variable 'qux'.")
|
|
|
|
NameError("Undefined variable 'foo'.")
|