diff options
author | Kurt B. Kaiser <kbk@shore.net> | 2002-12-16 02:07:11 (GMT) |
---|---|---|
committer | Kurt B. Kaiser <kbk@shore.net> | 2002-12-16 02:07:11 (GMT) |
commit | 822a77fcc761b3c9992950ddf48b3f0bec917b4d (patch) | |
tree | 39e69cbc0b8010183aedc7505ef0691a1d6f749d /Lib/idlelib/EditorWindow.py | |
parent | 8e5b53b3d9b1955494f5bfea638417f690808e05 (diff) | |
download | cpython-822a77fcc761b3c9992950ddf48b3f0bec917b4d.zip cpython-822a77fcc761b3c9992950ddf48b3f0bec917b4d.tar.gz cpython-822a77fcc761b3c9992950ddf48b3f0bec917b4d.tar.bz2 |
M EditorWindow.py
M PyShell.py
Idlefork SF Bug 440383 - IDLE goes into beep loop
Fix loop in EditorWindow.newline_and_indent_event() and
in addition fix submission of >>> prompt to PyParse.Parser
Eliminate extra attribute EditorWindow.auto_indent
Diffstat (limited to 'Lib/idlelib/EditorWindow.py')
-rw-r--r-- | Lib/idlelib/EditorWindow.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/idlelib/EditorWindow.py b/Lib/idlelib/EditorWindow.py index 8177058..a1a4830 100644 --- a/Lib/idlelib/EditorWindow.py +++ b/Lib/idlelib/EditorWindow.py @@ -1085,8 +1085,6 @@ class EditorWindow: text.see("insert") text.undo_block_stop() - auto_indent = newline_and_indent_event - # Our editwin provides a is_char_in_string function that works # with a Tk text index, but PyParse only knows about offsets into # a string. This builds a function for PyParse that accepts an |