summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/bytes_add.py
blob: ab027a26dffdf6a5fc928b3f0801da8fc939b376 (plain) (blame)
1
2
3
4
5
6
# test bytes + other

print(b"123" + b"456")

print(b"123" + b"") # RHS is empty, can be optimised
print(b"" + b"123") # LHS is empty, can be optimised