spacepaste

  1.  
  2. for c in data[::2]:
  3. if c > '7':
  4. field_bytes = binascii.unhexlify(data)
  5. try:
  6. field_bytes.decode("utf-8")
  7. if not has_pri_key:
  8. log_keyless_table(database, table)
  9. raise ValueError
  10. found_mojibake[database][table][rm_hex_wrap(column)]["rows_found"] += 1
  11. except UnicodeDecodeError:
  12. break
  13. else:
  14. continue
  15.