summaryrefslogtreecommitdiffstatshomepage
path: root/tests/bytecode/mp-tests/string1.py
blob: d6ddc7ae4329e9e0d9dc0e1404f35915266f67c8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
x = 'abc'
x = "abc"
x = r'abc'
x = 'abc' \
    'def'
x = ('abc'
    'def')

x = 'ab"c'
x = "ab'c"
x = '''ab'c'''