summaryrefslogtreecommitdiffstats
path: root/contrib/python/jedi/py3/patches/02-fix-SyntaxWarning.patch
blob: 08ba0a7eb9cb749ba265e8125083aa1c313ff1e8 (plain) (blame)
1
2
3
4
5
--- contrib/python/jedi/py3/jedi/evaluate/arguments.py	(index)
+++ contrib/python/jedi/py3/jedi/evaluate/arguments.py	(working tree)
@@ -95 +95 @@ def _parse_argument_clinic(string):
-        match = re.match('(?:(?:(\[),? ?|, ?|)(\w+)|, ?/)\]*', string)
+        match = re.match(r'(?:(?:(\[),? ?|, ?|)(\w+)|, ?/)\]*', string)