blob: 3d912ecb88a80b73344ddb3fb7fbe68553168e87 [file]
strings = [
# empty
'',
"",
'''''',
"""""",
# ordinary
'foo',
"foo",
'''foo''',
"""foo""",
# contain quotes of different style
'"foo"',
"'foo'",
'''"""foo"""''',
"""'''foo'''""",
# contain quotes of the same style
'\'foo\'',
"\"foo\"",
'''\'\'\'foo\'\'\'''',
"""\"\"\"foo\"\"\"""",
# contain quotes of both styles
'\'"foo"\'',
"'\"foo\"'",
'''\'\'\'"""foo"""\'\'\'''',
"""'''\"\"\"foo\"\"\"'''""",
]