summaryrefslogtreecommitdiffstats
path: root/Tools
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2002-01-23 15:15:13 (GMT)
committerGuido van Rossum <guido@python.org>2002-01-23 15:15:13 (GMT)
commit64e9d61a1e863d489edbc42a3c5d58d9c1eaa671 (patch)
tree8fee5c73946af3fca5ed662d6de7691a379e7164 /Tools
parentaf14289c5426743015dbbe0567e2c2677f1bff0c (diff)
downloadcpython-64e9d61a1e863d489edbc42a3c5d58d9c1eaa671.zip
cpython-64e9d61a1e863d489edbc42a3c5d58d9c1eaa671.tar.gz
cpython-64e9d61a1e863d489edbc42a3c5d58d9c1eaa671.tar.bz2
Properly fix SF bug #507298 (Gregor Lingl): shellpython2.2 -Qnew smart
indent error Use // where int division is intended. (This breaks IDLE for use with previous Python versions -- I don't care.)
Diffstat (limited to 'Tools')
-rw-r--r--Tools/idle/AutoIndent.py4
-rw-r--r--Tools/idle/EditorWindow.py2
2 files changed, 3 insertions, 3 deletions
diff --git a/Tools/idle/AutoIndent.py b/Tools/idle/AutoIndent.py
index 87f75c1..15b5011 100644
--- a/Tools/idle/AutoIndent.py
+++ b/Tools/idle/AutoIndent.py
@@ -171,7 +171,7 @@ class AutoIndent:
expand, tabwidth = string.expandtabs, self.tabwidth
have = len(expand(chars, tabwidth))
assert have > 0
- want = int((have - 1) / self.indentwidth) * self.indentwidth
+ want = int((have - 1) // self.indentwidth) * self.indentwidth
ncharsdeleted = 0
while 1:
chars = chars[:-1]
@@ -495,7 +495,7 @@ def classifyws(s, tabwidth):
effective = effective + 1
elif ch == '\t':
raw = raw + 1
- effective = (int(effective / tabwidth) + 1) * tabwidth
+ effective = (effective // tabwidth + 1) * tabwidth
else:
break
return raw, effective
diff --git a/Tools/idle/EditorWindow.py b/Tools/idle/EditorWindow.py
index bb69a5b..f924c45 100644
--- a/Tools/idle/EditorWindow.py
+++ b/Tools/idle/EditorWindow.py
@@ -465,7 +465,7 @@ class EditorWindow:
top, bot = self.getwindowlines()
lineno = self.getlineno(mark)
height = bot - top
- newtop = max(1, lineno - height/2)
+ newtop = max(1, lineno - height//2)
text.yview(float(newtop))
def getwindowlines(self):