summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/bytes_format_modulo.py
blob: 70246e72dcf6c05addb5f1de9dcfdd2d51931018 (plain) (blame)
1
2
3
4
5
6
7
# This test requires CPython3.5
print(b"%%" % ())
print(b"=%d=" % 1)
print(b"=%d=%d=" % (1, 2))

print(b"=%s=" % b"str")
print(b"=%r=" % b"str")