Disable predefined name analysis (if stmts) for all non-analysis tasks

It's really buggy and caused quite a few issues
This commit is contained in:
Dave Halter
2018-01-29 00:56:29 +01:00
parent 8149eabdf9
commit febe65f737
5 changed files with 24 additions and 5 deletions

View File

@@ -65,6 +65,10 @@ class X(): pass
#? type
type(X)
if os.path.isfile():
#? ['abspath']
fails = os.path.abspath
with open('foo') as f:
for line in f.readlines():