mirror of https://github.com/python/cpython.git
Flush screen buffer upon console.flush() and output.flush().
This fixes bug #511992.
This commit is contained in:
parent
2dcec0c86d
commit
4e7203855e
|
@ -108,6 +108,8 @@ def flush(self):
|
|||
self._buf = ""
|
||||
self.ted.WEClearUndo()
|
||||
self.updatescrollbars()
|
||||
if Qd.QDIsPortBuffered(self._parentwindow.wid):
|
||||
Qd.QDFlushPortBuffer(self._parentwindow.wid, None)
|
||||
|
||||
def selection_ok(self):
|
||||
selstart, selend = self.getselection()
|
||||
|
@ -298,6 +300,8 @@ def flush(self):
|
|||
self._buf = ""
|
||||
self.w.outputtext.updatescrollbars()
|
||||
self.w.outputtext.ted.WEFeatureFlag(WASTEconst.weFReadOnly, 1)
|
||||
if Qd.QDIsPortBuffered(self.w.wid):
|
||||
Qd.QDFlushPortBuffer(self.w.wid, None)
|
||||
|
||||
def show(self):
|
||||
if self.closed:
|
||||
|
|
Loading…
Reference in New Issue