Revert "Require boolean condition in If, While, IfExp."

This reverts commit e21829ce74.
This commit is contained in:
whitequark 2015-07-22 18:35:14 +03:00
parent f2a6110cc4
commit 51aef980a0
4 changed files with 3 additions and 21 deletions

View File

@ -146,8 +146,6 @@ class Inferencer(algorithm.Visitor):
def visit_IfExpT(self, node):
self.generic_visit(node)
self._unify(node.test.type, builtins.TBool(),
node.test.loc, None)
self._unify(node.body.type, node.orelse.type,
node.body.loc, node.orelse.loc)
self._unify(node.type, node.body.type,
@ -794,11 +792,6 @@ class Inferencer(algorithm.Visitor):
node.value = self._coerce_one(value_type, node.value, other_node=node.target)
def visit_If(self, node):
self.generic_visit(node)
self._unify(node.test.type, builtins.TBool(),
node.test.loc, None)
def visit_For(self, node):
old_in_loop, self.in_loop = self.in_loop, True
self.generic_visit(node)
@ -809,8 +802,6 @@ class Inferencer(algorithm.Visitor):
old_in_loop, self.in_loop = self.in_loop, True
self.generic_visit(node)
self.in_loop = old_in_loop
self._unify(node.test.type, builtins.TBool(),
node.test.loc, None)
def visit_Break(self, node):
if not self.in_loop:

View File

@ -23,12 +23,3 @@ a = b
# CHECK-L: ${LINE:+1}: error: type int(width='a) does not have an attribute 'x'
(1).x
# CHECK-L: ${LINE:+1}: error: cannot unify int(width='a) with bool
1 if 1 else 1
# CHECK-L: ${LINE:+1}: error: cannot unify int(width='a) with bool
if 1: pass
# CHECK-L: ${LINE:+1}: error: cannot unify int(width='a) with bool
while 1: pass

View File

@ -3,7 +3,7 @@
def _gcd(a, b):
if a < 0:
a = -a
while a > 0:
while a:
c = a
a = b % a
b = c

View File

@ -33,8 +33,8 @@ j = []
j += [1.0]
# CHECK-L: j:list(elt=float)
1 if c else 2
# CHECK-L: 1:int(width='f) if c:bool else 2:int(width='f):int(width='f)
1 if a else 2
# CHECK-L: 1:int(width='f) if a:int(width='a) else 2:int(width='f):int(width='f)
True and False
# CHECK-L: True:bool and False:bool:bool