Files
python-uncompyle6/test/base_tests/python2.7/test_expressions.py
2015-12-14 09:38:46 -05:00

10 lines
216 B
Python

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