You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-02 16:44:46 +08:00
10 lines
216 B
Python
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) |