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.
24 lines
548 B
Python
24 lines
548 B
Python
try:
|
|
try:
|
|
import ubinascii as binascii
|
|
except ImportError:
|
|
import binascii
|
|
except ImportError:
|
|
print("SKIP")
|
|
raise SystemExit
|
|
|
|
print(binascii.unhexlify(b"0001020304050607"))
|
|
print(binascii.unhexlify(b"08090a0b0c0d0e0f"))
|
|
print(binascii.unhexlify(b"7f80ff"))
|
|
print(binascii.unhexlify(b"313233344142434461626364"))
|
|
|
|
try:
|
|
a = binascii.unhexlify(b"0") # odd buffer length
|
|
except ValueError:
|
|
print("ValueError")
|
|
|
|
try:
|
|
a = binascii.unhexlify(b"gg") # digit not hex
|
|
except ValueError:
|
|
print("ValueError")
|