2015-08-29 17:30:28 -04:00
|
|
|
# test bytes + other
|
2017-03-08 18:07:19 -05:00
|
|
|
try:
|
2021-04-23 15:26:42 -04:00
|
|
|
import uarray as array
|
2017-03-08 18:07:19 -05:00
|
|
|
except ImportError:
|
2021-04-23 15:26:42 -04:00
|
|
|
try:
|
|
|
|
import array
|
|
|
|
except ImportError:
|
|
|
|
print("SKIP")
|
|
|
|
raise SystemExit
|
2015-08-29 17:30:28 -04:00
|
|
|
|
|
|
|
print(b"123" + array.array('i', [1]))
|