3dc324d3f1
This adds the Python files in the tests/ directory to be formatted with ./tools/codeformat.py. The basics/ subdirectory is excluded for now so we aren't changing too much at once. In a few places `# fmt: off`/`# fmt: on` was used where the code had special formatting for readability or where the test was actually testing the specific formatting.
25 lines
770 B
Python
25 lines
770 B
Python
try:
|
|
try:
|
|
import ubinascii as binascii
|
|
except ImportError:
|
|
import binascii
|
|
except ImportError:
|
|
print("SKIP")
|
|
raise SystemExit
|
|
|
|
try:
|
|
binascii.crc32
|
|
except AttributeError:
|
|
print("SKIP")
|
|
raise SystemExit
|
|
|
|
print(hex(binascii.crc32(b"The quick brown fox jumps over the lazy dog")))
|
|
print(hex(binascii.crc32(b"\x00" * 32)))
|
|
print(hex(binascii.crc32(b"\xff" * 32)))
|
|
print(hex(binascii.crc32(bytes(range(32)))))
|
|
|
|
print(hex(binascii.crc32(b" over the lazy dog", binascii.crc32(b"The quick brown fox jumps"))))
|
|
print(hex(binascii.crc32(b"\x00" * 16, binascii.crc32(b"\x00" * 16))))
|
|
print(hex(binascii.crc32(b"\xff" * 16, binascii.crc32(b"\xff" * 16))))
|
|
print(hex(binascii.crc32(bytes(range(16, 32)), binascii.crc32(bytes(range(16))))))
|