2019-10-29 11:01:47 +00:00
|
|
|
try:
|
|
|
|
'' % ()
|
|
|
|
except TypeError:
|
|
|
|
print("SKIP")
|
|
|
|
raise SystemExit
|
|
|
|
|
2015-03-14 21:20:58 +00:00
|
|
|
print("%%" % ())
|
2014-03-31 19:18:28 +01:00
|
|
|
print("=%s=" % 1)
|
|
|
|
print("=%s=%s=" % (1, 2))
|
|
|
|
print("=%s=" % (1,))
|
|
|
|
print("=%s=" % [1, 2])
|
|
|
|
|
|
|
|
print("=%s=" % "str")
|
|
|
|
print("=%r=" % "str")
|
|
|
|
|
|
|
|
try:
|
|
|
|
print("=%s=%s=" % 1)
|
|
|
|
except TypeError:
|
|
|
|
print("TypeError")
|
|
|
|
|
|
|
|
try:
|
|
|
|
print("=%s=%s=%s=" % (1, 2))
|
|
|
|
except TypeError:
|
|
|
|
print("TypeError")
|
|
|
|
|
|
|
|
try:
|
|
|
|
print("=%s=" % (1, 2))
|
|
|
|
except TypeError:
|
|
|
|
print("TypeError")
|
2014-04-02 19:42:39 +01:00
|
|
|
|
2014-04-05 16:21:45 +01:00
|
|
|
print("%s" % True)
|
|
|
|
print("%s" % 1)
|
2015-03-14 21:20:58 +00:00
|
|
|
print("%.1s" % "ab")
|
2014-04-05 16:21:45 +01:00
|
|
|
|
|
|
|
print("%r" % True)
|
|
|
|
print("%r" % 1)
|
|
|
|
|
2014-04-02 19:42:39 +01:00
|
|
|
print("%c" % 48)
|
|
|
|
print("%c" % 'a')
|
|
|
|
print("%10s" % 'abc')
|
|
|
|
print("%-10s" % 'abc')
|
2014-06-05 18:02:15 +01:00
|
|
|
|
2020-01-22 19:53:54 +00:00
|
|
|
print('%c' % False)
|
|
|
|
print('%c' % True)
|
|
|
|
|
2017-02-03 01:17:43 +00:00
|
|
|
# Should be able to print dicts; in this case they aren't used
|
|
|
|
# to lookup keywords in formats like %(foo)s
|
|
|
|
print('%s' % {})
|
|
|
|
print('%s' % ({},))
|
|
|
|
|
2014-06-05 18:02:15 +01:00
|
|
|
# Cases when "*" used and there's not enough values total
|
|
|
|
try:
|
|
|
|
print("%*s" % 5)
|
|
|
|
except TypeError:
|
|
|
|
print("TypeError")
|
|
|
|
try:
|
|
|
|
print("%*.*s" % (1, 15))
|
|
|
|
except TypeError:
|
|
|
|
print("TypeError")
|
|
|
|
|
|
|
|
print("%(foo)s" % {"foo": "bar", "baz": False})
|
2017-02-03 01:17:43 +00:00
|
|
|
print("%s %(foo)s %(foo)s" % {"foo": 1})
|
2014-06-05 18:02:15 +01:00
|
|
|
try:
|
|
|
|
print("%(foo)s" % {})
|
|
|
|
except KeyError:
|
|
|
|
print("KeyError")
|
|
|
|
# Using in "*" with dict got to fail
|
|
|
|
try:
|
|
|
|
print("%(foo)*s" % {"foo": "bar"})
|
|
|
|
except TypeError:
|
|
|
|
print("TypeError")
|
2015-08-21 11:56:14 +01:00
|
|
|
|
2017-02-03 01:17:43 +00:00
|
|
|
# When using %(foo)s format the single argument must be a dict
|
|
|
|
try:
|
|
|
|
'%(foo)s' % 1
|
|
|
|
except TypeError:
|
|
|
|
print('TypeError')
|
|
|
|
try:
|
|
|
|
'%(foo)s' % ({},)
|
|
|
|
except TypeError:
|
|
|
|
print('TypeError')
|
|
|
|
|
2015-08-21 11:56:14 +01:00
|
|
|
try:
|
|
|
|
'%(a' % {'a':1}
|
|
|
|
except ValueError:
|
|
|
|
print('ValueError')
|
|
|
|
|
|
|
|
try:
|
|
|
|
'%.*d %.*d' % (20, 5)
|
|
|
|
except TypeError:
|
|
|
|
print('TypeError')
|
|
|
|
|
|
|
|
try:
|
|
|
|
a = '%*' % 1
|
|
|
|
except (ValueError):
|
|
|
|
print('ValueError')
|
|
|
|
|
|
|
|
try:
|
|
|
|
'%c' % 'aa'
|
|
|
|
except TypeError:
|
|
|
|
print('TypeError')
|
|
|
|
|
|
|
|
try:
|
|
|
|
'%l' % 1
|
|
|
|
except ValueError:
|
|
|
|
print('ValueError')
|
2015-08-26 15:45:06 +01:00
|
|
|
|
|
|
|
try:
|
|
|
|
'a%' % 1
|
|
|
|
except ValueError:
|
|
|
|
print('ValueError')
|