summaryrefslogtreecommitdiff
path: root/testsuite/W60.py
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/W60.py')
-rw-r--r--testsuite/W60.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/testsuite/W60.py b/testsuite/W60.py
index 973d22f..cbe267d 100644
--- a/testsuite/W60.py
+++ b/testsuite/W60.py
@@ -13,3 +13,19 @@ if x <> 0:
x = 0
#: W604
val = `1 + 2`
+#: W605
+regex = '\.png$'
+#: W605
+regex = '''
+\.png$
+'''
+#: Okay
+regex = r'\.png$'
+regex = '\\.png$'
+regex = r'''
+\.png$
+'''
+regex = r'''
+\\.png$
+'''
+s = '\\'