mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-07 14:34:31 +08:00
34 lines
529 B
Python
34 lines
529 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
|
|
|
|
# -----------------
|
|
# detailed except
|
|
# -----------------
|
|
try:
|
|
str.not_existing
|
|
except ((AttributeError)): pass
|
|
try:
|
|
#! attribute-error
|
|
str.not_existing
|
|
except [AttributeError]: pass
|