1
0
forked from VimPlug/jedi
Files
jedi-fork/test/static_analysis/try_except.py
2014-05-13 01:21:32 +02:00

52 lines
855 B
Python

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
# -----------------
# multi except
# -----------------
try:
str.not_existing
except (TypeError, AttributeError): pass
try:
str.not_existing
except ImportError:
pass
except (NotImplementedError, AttributeError): pass
try:
#! attribute-error
str.not_existing
except (TypeError, NotImplementedError): pass
# -----------------
# detailed except
# -----------------
try:
str.not_existing
except ((AttributeError)): pass
try:
#! attribute-error
str.not_existing
except [AttributeError]: pass