commit | d91b0d6a65a0b6d0935a4e3ea131fa78c43a690d | [log] [tgz] |
---|---|---|
author | Steven M. Gava <elguavas@python.net> | Wed Jan 23 05:15:17 2002 +0000 |
committer | Steven M. Gava <elguavas@python.net> | Wed Jan 23 05:15:17 2002 +0000 |
tree | 80ad920a7417369f96f3a2de660e26e3aa019179 | |
parent | 4509168dbf56a3b400db6cddfe12796aaa00e36b [diff] [blame] |
fix for python2.2 -Qnew division error, thanks Tim!
diff --git a/Lib/idlelib/AutoIndent.py b/Lib/idlelib/AutoIndent.py index eff398b..4fbbedf 100644 --- a/Lib/idlelib/AutoIndent.py +++ b/Lib/idlelib/AutoIndent.py
@@ -462,7 +462,7 @@ effective = effective + 1 elif ch == '\t': raw = raw + 1 - effective = (effective / tabwidth + 1) * tabwidth + effective = (int(effective / tabwidth) + 1) * tabwidth else: break return raw, effective