From fd6526d9bd612d37169c89bf1ec2c980adaeff85 Mon Sep 17 00:00:00 2001 From: Giovanni Gherdovich Date: Mon, 11 Oct 2010 16:24:30 +0200 Subject: [PATCH 1/1] cleaning statement to sys.__stdout__ --- sface/logwindow.py | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/sface/logwindow.py b/sface/logwindow.py index 7c07b43..fd252ef 100644 --- a/sface/logwindow.py +++ b/sface/logwindow.py @@ -19,14 +19,11 @@ class LogIO(QObject): self.parent().update() def getText(self): - self.old_stdout.write("getText: ENTERING\n") val = self.io.getvalue() # looks like there is no other way # to empty the StringIO del self.io self.io = StringIO() - self.old_stdout.write("getText: GOT VALUE\n") - self.old_stdout.write(val + "\n") return val class LogWindow(QDialog): @@ -50,15 +47,7 @@ class LogWindow(QDialog): sys.stderr = self.logio def update(self): - #starttime = time.time() - #self.logio.old_stdout.write("update: entering\n")#.flush() - #self.logio.old_stdout.write('one\n')#.flush() self.text.insertPlainText(self.logio.getText()) - #self.logio.old_stdout.write('two\n')#.flush() c = self.text.textCursor() - #self.logio.old_stdout.write('three\n')#.flush() c.movePosition(QTextCursor.End) - #self.logio.old_stdout.write('four\n')#.flush() self.text.setTextCursor(c) - #self.logio.old_stdout.write('five\n')#.flush() - #self.logio.old_stdout.write("update: done \n")# + time.strftime(('%M:%S'),"[%.3f s]"%(time.time() - starttime)))#.flush() -- 2.43.0