summaryrefslogtreecommitdiff
path: root/Lib/idlelib/SearchEngine.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-04-03 18:13:23 +0300
committerSerhiy Storchaka <storchaka@gmail.com>2015-04-03 18:13:23 +0300
commit50ef0f41afd313ed3c433f724e6aaa79d7e55c02 (patch)
treee33b1fe0c2fb07b6b65b7ad5f5c0e56adce7c465 /Lib/idlelib/SearchEngine.py
parent32ed7509523517a3737e45123609048c75440591 (diff)
parent9f8a8910a415e31808debe6e9fed7f7c3638d42a (diff)
downloadcpython-git-50ef0f41afd313ed3c433f724e6aaa79d7e55c02.tar.gz
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 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)