From 9f8a8910a415e31808debe6e9fed7f7c3638d42a Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Fri, 3 Apr 2015 18:12:41 +0300 Subject: Escaped backslashes in docstrings. --- Lib/idlelib/SearchEngine.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/idlelib/SearchEngine.py') diff --git a/Lib/idlelib/SearchEngine.py b/Lib/idlelib/SearchEngine.py index 099cb09dd5..1e0534c085 100644 --- a/Lib/idlelib/SearchEngine.py +++ b/Lib/idlelib/SearchEngine.py @@ -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) -- cgit v1.2.1