1
0
forked from VimPlug/jedi

static analysis start positions are now tested

This commit is contained in:
Dave Halter
2014-05-16 15:03:59 +02:00
parent 552502a2e9
commit 0f7a17090c
5 changed files with 22 additions and 21 deletions

View File

@@ -1,5 +1,5 @@
try:
#! attribute-error
#! 4 attribute-error
str.not_existing
except TypeError:
pass
@@ -7,7 +7,7 @@ except TypeError:
try:
str.not_existing
except AttributeError:
#! attribute-error
#! 4 attribute-error
str.not_existing
pass
@@ -35,7 +35,7 @@ except ImportError:
except (NotImplementedError, AttributeError): pass
try:
#! attribute-error
#! 4 attribute-error
str.not_existing
except (TypeError, NotImplementedError): pass
@@ -46,6 +46,6 @@ try:
str.not_existing
except ((AttributeError)): pass
try:
#! attribute-error
#! 4 attribute-error
str.not_existing
except [AttributeError]: pass