Remove the old 'is not' logic to detect if not instances and use them to do branch predictions. This is not necessary anymore, since we now support that in a more general way (flow_analysis).

This commit is contained in:
Dave Halter
2014-08-12 18:14:03 +02:00
parent eeac77d360
commit cf32e15f65
2 changed files with 0 additions and 28 deletions

View File

@@ -356,16 +356,6 @@ foo = \
#? int()
foo
# -----------------
# if `is not` checks
# -----------------
foo = ['a']
if foo is not None:
foo = ''.join(foo)
#? str()
foo
# -----------------
# module attributes
# -----------------