Files
python-uncompyle6/test/test_expressions.py
2012-09-21 17:01:52 +02:00

6 lines
166 B
Python
Executable File

def _lsbStrToInt(str):
return ord(str[0]) + \
(ord(str[1]) << 8) + \
(ord(str[2]) << 16) + \
(ord(str[3]) << 24)