summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/bytes_format_modulo.py
blob: b928f593e04ef48b67c533119335b3e1065b0946 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# This test requires CPython3.5

try:
    b'' % ()
except TypeError:
    print("SKIP")
    raise SystemExit

print(b"%%" % ())
print(b"=%d=" % 1)
print(b"=%d=%d=" % (1, 2))

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