Bug fix for expression in 2.5/2.6

This commit is contained in:
root
2013-02-20 19:23:11 +01:00
parent 0d3fa565ea
commit b835655213
4 changed files with 17 additions and 1 deletions

View File

@@ -3,3 +3,8 @@ def _lsbStrToInt(str):
(ord(str[1]) << 8) + \
(ord(str[2]) << 16) + \
(ord(str[3]) << 24)
def test(x):
return x
test(a == b == c == 1)