664bc44f30
This requires CPython3.5, to not require switching to it, just use .exp file.
8 lines
145 B
Python
8 lines
145 B
Python
# 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")
|