From 0b70cca9f8132b6fe03803abe9e89bd3a00a80ee Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Fri, 25 Aug 2006 02:59:59 +0000 Subject: Remove usage of backticks. --- Lib/idlelib/EditorWindow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/idlelib/EditorWindow.py') diff --git a/Lib/idlelib/EditorWindow.py b/Lib/idlelib/EditorWindow.py index dccd3ff9d17..bc61afb4310 100644 --- a/Lib/idlelib/EditorWindow.py +++ b/Lib/idlelib/EditorWindow.py @@ -1138,7 +1138,7 @@ class EditorWindow(object): if not self.context_use_ps1: for context in self.num_context_lines: startat = max(lno - context, 1) - startatindex = `startat` + ".0" + startatindex = repr(startat) + ".0" rawtext = text.get(startatindex, "insert") y.set_str(rawtext) bod = y.find_good_parse_start( -- cgit v1.2.3