summaryrefslogtreecommitdiffstatshomepage
path: root/tests/bytecode/mp-tests/string2.py
blob: 70dc9924b008e32af9da4a926910f35fb0fe0550 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
'abc'
class f:
    u"123"
    pass
x = 'abc'
x = u"abc"
x = u"ab\\c"
x = r"ab\\c"
x = b"abc"
x = rb"abc"
x = b"ab\\c"
x = rb"ab\\c"
x = """abc"""
x = b"""abc"""