summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/SearchEngine.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-04-03 15:12:41 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-04-03 15:12:41 (GMT)
commit9f8a8910a415e31808debe6e9fed7f7c3638d42a (patch)
treeffa59e04328fee48f702a8f1ec628a8a83e7b881 /Lib/idlelib/SearchEngine.py
parent72dcb0a7658c6dd99c2798b515c76e8cb311dbf6 (diff)
downloadcpython-9f8a8910a415e31808debe6e9fed7f7c3638d42a.zip
cpython-9f8a8910a415e31808debe6e9fed7f7c3638d42a.tar.gz
cpython-9f8a8910a415e31808debe6e9fed7f7c3638d42a.tar.bz2
Escaped backslashes in docstrings.
Diffstat (limited to 'Lib/idlelib/SearchEngine.py')
-rw-r--r--Lib/idlelib/SearchEngine.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/SearchEngine.py b/Lib/idlelib/SearchEngine.py
index 099cb09..1e0534c 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)