Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff06671 commit bd8ce79Copy full SHA for bd8ce79
1 file changed
Tools/idle/AutoIndent.py
@@ -171,7 +171,7 @@ def smart_backspace_event(self, event):
171
expand, tabwidth = string.expandtabs, self.tabwidth
172
have = len(expand(chars, tabwidth))
173
assert have > 0
174
- want = int((have - 1) // self.indentwidth) * self.indentwidth
+ want = ((have - 1) // self.indentwidth) * self.indentwidth
175
ncharsdeleted = 0
176
while 1:
177
chars = chars[:-1]
0 commit comments