commit | 4509168dbf56a3b400db6cddfe12796aaa00e36b | [log] [tgz] |
---|---|---|
author | Tim Peters <tim.peters@gmail.com> | Wed Jan 23 05:02:20 2002 +0000 |
committer | Tim Peters <tim.peters@gmail.com> | Wed Jan 23 05:02:20 2002 +0000 |
tree | 3fd25bb6ed286626c80cdbba1fd637da47494d60 | |
parent | 685d46fee1fef5848956225365ea7840b55b95ad [diff] |
classifyws(): Fix a "/" to work under -Qnew (as well as without it). Bugfix candidate!
diff --git a/Tools/idle/AutoIndent.py b/Tools/idle/AutoIndent.py index 66a0aec..87f75c1 100644 --- a/Tools/idle/AutoIndent.py +++ b/Tools/idle/AutoIndent.py
@@ -495,7 +495,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