Browse Source

Merge with 3.2 #13039 allow proper deletion of '>>> ' in IDLE editor windows.

Patch by Roger Serwy.
pull/2332/head
Terry Jan Reedy 14 years ago
parent
commit
2d496005fd
  1. 5
      Lib/idlelib/EditorWindow.py

5
Lib/idlelib/EditorWindow.py

@ -1134,7 +1134,10 @@ class EditorWindow(object):
assert have > 0
want = ((have - 1) // self.indentwidth) * self.indentwidth
# Debug prompt is multilined....
last_line_of_prompt = sys.ps1.split('\n')[-1]
if self.context_use_ps1:
last_line_of_prompt = sys.ps1.split('\n')[-1]
else:
last_line_of_prompt = ''
ncharsdeleted = 0
while 1:
if chars == last_line_of_prompt:

Loading…
Cancel
Save