We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87672d7 commit e13370bCopy full SHA for e13370b
1 file changed
Tools/parser/com2ann.py
@@ -10,8 +10,8 @@
10
11
__all__ = ['com2ann', 'TYPE_COM']
12
13
-TYPE_COM = re.compile('\s*#\s*type\s*:.*$', flags=re.DOTALL)
14
-TRAIL_OR_COM = re.compile('\s*$|\s*#.*$', flags=re.DOTALL)
+TYPE_COM = re.compile(r'\s*#\s*type\s*:.*$', flags=re.DOTALL)
+TRAIL_OR_COM = re.compile(r'\s*$|\s*#.*$', flags=re.DOTALL)
15
16
17
class _Data:
0 commit comments