Exemplo n.º 1
0
 def show_errorlog(self):
     if self.error_output:
         output_dialog = TextEditor(self.error_output,
                                    title=_("Profiler output"),
                                    readonly=True,
                                    parent=self)
         output_dialog.resize(700, 500)
         output_dialog.exec_()
Exemplo n.º 2
0
 def show_log(self):
     if self.output:
         output_dialog = TextEditor(self.output,
                                    title=_("Pylint output"),
                                    parent=self,
                                    readonly=True)
         output_dialog.resize(700, 500)
         output_dialog.exec_()
Exemplo n.º 3
0
 def show_log(self):
     """Show output of testing process."""
     if self.output:
         te = TextEditor(self.output,
                         title=_("Unit testing output"),
                         readonly=True)
         te.show()
         te.exec_()
Exemplo n.º 4
0
 def show_errorlog(self):
     if self.error_output:
         editor = TextEditor(self.error_output,
                             title=_("Line profiler output"),
                             readonly=True)
         # Call .show() to dynamically resize editor;
         # see spyder-ide/spyder#12202
         editor.show()
         editor.exec_()
Exemplo n.º 5
0
 def show_log(self):
     """Show process output log."""
     if self.output:
         output_dialog = TextEditor(
             self.output,
             title=_("Profiler output"),
             readonly=True,
             parent=self,
         )
         output_dialog.resize(700, 500)
         output_dialog.exec_()
Exemplo n.º 6
0
 def show_log(self):
     """
     Show output log dialog.
     """
     if self.output:
         output_dialog = TextEditor(self.output,
                                    title=_("Code analysis output"),
                                    parent=self,
                                    readonly=True)
         output_dialog.resize(700, 500)
         output_dialog.exec_()