micropython: add micropython component
This commit is contained in:
@@ -0,0 +1,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")
|
Reference in New Issue
Block a user