try/except test for static analysis (duck typing should not cause jedi to report mistakes)

This commit is contained in:
Dave Halter
2014-05-12 18:34:38 +02:00
parent 96386b4578
commit 7096a570bf

View 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