diff options
author | Brett Cannon <bcannon@gmail.com> | 2006-08-25 02:59:59 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2006-08-25 02:59:59 (GMT) |
commit | 0b70cca9f8132b6fe03803abe9e89bd3a00a80ee (patch) | |
tree | 032e42eac6b0cf9538d10f468f820381806d1964 /Lib/idlelib/HyperParser.py | |
parent | db60d6e2aa45fdc9f5f560847238a120e8a34f04 (diff) | |
download | cpython-0b70cca9f8132b6fe03803abe9e89bd3a00a80ee.zip cpython-0b70cca9f8132b6fe03803abe9e89bd3a00a80ee.tar.gz cpython-0b70cca9f8132b6fe03803abe9e89bd3a00a80ee.tar.bz2 |
Remove usage of backticks.
Diffstat (limited to 'Lib/idlelib/HyperParser.py')
-rw-r--r-- | Lib/idlelib/HyperParser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/HyperParser.py b/Lib/idlelib/HyperParser.py index 519de74..31f46b1 100644 --- a/Lib/idlelib/HyperParser.py +++ b/Lib/idlelib/HyperParser.py @@ -31,7 +31,7 @@ class HyperParser: if not editwin.context_use_ps1: for context in editwin.num_context_lines: startat = max(lno - context, 1) - startatindex = `startat` + ".0" + startatindex = repr(startat) + ".0" stopatindex = "%d.end" % lno # We add the newline because PyParse requires a newline at end. # We add a space so that index won't be at end of line, so that |