Esempio n. 1
0
 def analyze(self, filename):
     """Reimplement analyze method"""
     if self.dockwidget and not self.ismaximized:
         self.dockwidget.setVisible(True)
         self.dockwidget.setFocus()
         self.dockwidget.raise_()
     ProfilerWidget.analyze(self, filename)
Esempio n. 2
0
 def analyze(self, filename):
     """Reimplement analyze method"""
     if self.dockwidget and not self.ismaximized:
         self.dockwidget.setVisible(True)
         self.dockwidget.setFocus()
         self.dockwidget.raise_()
     pythonpath = self.main.get_spyder_pythonpath()
     runconf = runconfig.get_run_configuration(filename)
     wdir, args = None, None
     if runconf is not None:
         if runconf.wdir_enabled:
             wdir = runconf.wdir
         if runconf.args_enabled:
             args = runconf.args
     ProfilerWidget.analyze(self, filename, wdir=wdir, args=args,
                            pythonpath=pythonpath)
Esempio n. 3
0
 def analyze(self, filename):
     """Reimplement analyze method"""
     if self.dockwidget and not self.ismaximized:
         self.dockwidget.setVisible(True)
         self.dockwidget.setFocus()
         self.dockwidget.raise_()
     pythonpath = self.main.get_spyder_pythonpath()
     runconf = runconfig.get_run_configuration(filename)
     wdir, args = None, None
     if runconf is not None:
         if runconf.wdir_enabled:
             wdir = runconf.wdir
         if runconf.args_enabled:
             args = runconf.args
     ProfilerWidget.analyze(self, filename, wdir=wdir, args=args,
                            pythonpath=pythonpath)