mirror of
https://github.com/github/codeql.git
synced 2025-12-20 02:44:30 +01:00
7 lines
144 B
Python
7 lines
144 B
Python
import mypkg
|
|
print(mypkg.foo) # 42
|
|
try:
|
|
print(mypkg.bar)
|
|
except AttributeError as e:
|
|
print(e) # module 'mypkg' has no attribute 'bar'
|