You've already forked Core2forAWS-MicroPython
mirror of
https://github.com/m5stack/Core2forAWS-MicroPython.git
synced 2026-05-20 10:30:31 -07:00
16 lines
294 B
Python
16 lines
294 B
Python
try:
|
|
extra_coverage
|
|
except NameError:
|
|
print("SKIP")
|
|
import sys
|
|
sys.exit()
|
|
|
|
data = extra_coverage()
|
|
|
|
# test hashing of str/bytes that have an invalid hash
|
|
print(data)
|
|
print(hash(data[0]))
|
|
print(hash(data[1]))
|
|
print(hash(bytes(data[0], 'utf8')))
|
|
print(hash(str(data[1], 'utf8')))
|