mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-09 23:34:45 +08:00
try/except test for static analysis (duck typing should not cause jedi to report mistakes)
This commit is contained in:
33
test/static_analysis/try_except.py
Normal file
33
test/static_analysis/try_except.py
Normal file
@@ -0,0 +1,33 @@
|
||||
try:
|
||||
#! attribute-error
|
||||
str.not_existing
|
||||
except TypeError:
|
||||
pass
|
||||
|
||||
try:
|
||||
str.not_existing
|
||||
except AttributeError:
|
||||
#! attribute-error
|
||||
str.not_existing
|
||||
pass
|
||||
|
||||
try:
|
||||
import not_existing_import
|
||||
except ImportError:
|
||||
pass
|
||||
try:
|
||||
#! import-error
|
||||
import not_existing_import
|
||||
except AttributeError:
|
||||
pass
|
||||
|
||||
# -----------------
|
||||
# detailed except
|
||||
# -----------------
|
||||
try:
|
||||
str.not_existing
|
||||
except ((AttributeError)): pass
|
||||
try:
|
||||
#! attribute-error
|
||||
str.not_existing
|
||||
except [AttributeError]: pass
|
||||
Reference in New Issue
Block a user