index
:
openmano-mpy
master
MicroPython source and hardware configuration for OpenMano
Damien George
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
tests
/
basics
/
bytes_add.py
blob: 5432d01e580f8f774162e12c46297d0af7188e10 (
plain
)
1
2
3
4
# test bytes + other
print
(
b
"123"
+
b
"456"
)
print
(
b
"123"
+
bytearray
(
2
))