summaryrefslogtreecommitdiffstatshomepage
path: root/tests/bytecode/mp-tests/string2.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bytecode/mp-tests/string2.py')
-rw-r--r--tests/bytecode/mp-tests/string2.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/bytecode/mp-tests/string2.py b/tests/bytecode/mp-tests/string2.py
new file mode 100644
index 0000000000..70dc9924b0
--- /dev/null
+++ b/tests/bytecode/mp-tests/string2.py
@@ -0,0 +1,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"""