From: Steven M. Gava Date: Wed, 23 Jan 2002 23:56:41 +0000 (+0000) Subject: staying current with python idle fixes X-Git-Tag: v2.3c1~6791 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8cf2704a59421d2cbb1ce1a52b21c1b158064d84;p=python staying current with python idle fixes --- diff --git a/Lib/idlelib/AutoIndent.py b/Lib/idlelib/AutoIndent.py index 4fbbedf4e0..3432bf0136 100644 --- a/Lib/idlelib/AutoIndent.py +++ b/Lib/idlelib/AutoIndent.py @@ -138,7 +138,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 = ((have - 1) // self.indentwidth) * self.indentwidth ncharsdeleted = 0 while 1: chars = chars[:-1] @@ -462,7 +462,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