Escaped backslashes in docstrings.

This commit is contained in:
Serhiy Storchaka 2015-04-03 18:12:41 +03:00
parent 72dcb0a765
commit 9f8a8910a4
7 changed files with 13 additions and 13 deletions

View file

@ -191,7 +191,7 @@ def search_reverse(prog, chars, col):
This is done by searching forwards until there is no match.
Prog: compiled re object with a search method returning a match.
Chars: line of text, without \n.
Chars: line of text, without \\n.
Col: stop index for the search; the limit for match.end().
'''
m = prog.search(chars)