Projects STRLCPY SharPyShell Commits 300b956a
🤬
Revision indexing in progress... (symbol navigation in revisions will be accurate after indexed)
  • ■ ■ ■ ■
    core/Generate.py
    skipped 77 lines
    78 78   representation = '='
    79 79   for i in range(0, len(dll_code), 8):
    80 80   int_conversion = unpack(representation + 'Q', dll_code[i:i + 8])[0]
    81  - ulong_quotients.append(str(int_conversion / divisor))
     81 + ulong_quotients.append(str(int_conversion // divisor))
    82 82   ulong_remainders.append(str(int_conversion % divisor))
    83 83   ulong_quotients_string = '{' + ','.join(ulong_quotients) + '}'
    84 84   ulong_remainders_string = '{' + ','.join(ulong_remainders) + '}'
    skipped 29 lines
Please wait...
Page is in error, reload to recover