Package: python3-docopt
Version: 0.6.2-4.1
Severity: normal
Installing python3-docopt, I received the following warning messages:
Setting up python3-docopt (0.6.2-4.1) ...
/usr/lib/python3/dist-packages/docopt.py:165: SyntaxWarning: invalid escape
sequence '\S'
name = re.findall('(<\S*?>)', source)[0]
/usr/lib/python3/dist-packages/docopt.py:166: SyntaxWarning: invalid escape
sequence '\['
value = re.findall('\[default: (.*)\]', source, flags=re.I)
/usr/lib/python3/dist-packages/docopt.py:207: SyntaxWarning: invalid escape
sequence '\['
matched = re.findall('\[default: (.*)\]', description, flags=re.I)
/usr/lib/python3/dist-packages/docopt.py:456: SyntaxWarning: invalid escape
sequence '\S'
split = re.split('\n *(<\S+?>|-\S+?)', doc)[1:]
These strings should all be preceded by an "r" to make them raw
strings.
Best wishes,
Julian