bytes_add_endian.py 141 B

12345678
  1. # test bytes + other
  2. try:
  3. import array
  4. except ImportError:
  5. print("SKIP")
  6. raise SystemExit
  7. print(b"123" + array.array('i', [1]))