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, 0 insertions, 14 deletions
diff --git a/tests/bytecode/mp-tests/string2.py b/tests/bytecode/mp-tests/string2.py
deleted file mode 100644
index 70dc9924b0..0000000000
--- a/tests/bytecode/mp-tests/string2.py
+++ /dev/null
@@ -1,14 +0,0 @@
-'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"""