blob: 97dfedc4ac836cceba260267f4635d0c0137ca8b [file] [log] [blame]
"""test string format error"""
# pylint: disable=print-statement,unsupported-binary-operation,line-too-long
from __future__ import print_function
PARG_1 = PARG_2 = PARG_3 = 1
def pprint():
"""Test string format"""
print("%s %s" % {'PARG_1': 1, 'PARG_2': 2}) # [too-few-format-args]
print("%s" % (PARG_1, PARG_2)) # [too-many-format-args]
print("%(PARG_1)d %d" % {'PARG_1': 1, 'PARG_2': 2}) # [mixed-format-string]
print("%(PARG_1)d %(PARG_2)d" % {'PARG_1': 1}) # [missing-format-string-key]
print("%(PARG_1)d %(PARG_2)d" % {'PARG_1': 1, 'PARG_2':2, 'PARG_3':3}) # [unused-format-string-key]
print("%(PARG_1)d %(PARG_2)d" % {'PARG_1': 1, 2:3}) # [missing-format-string-key,bad-format-string-key]
print("%(PARG_1)d %(PARG_2)d" % (2, 3)) # [format-needs-mapping]
print("%(PARG_1)d %(PARG_2)d" % [2, 3]) # [format-needs-mapping]
print("%2z" % PARG_1) # [bad-format-character]
print("strange format %2" % PARG_2) # [truncated-format-string]
print("works in 3 %a" % 1)