Ejemplo n.º 1
0
 def __init__(self, parent=None):
     ProfilerWidget.__init__(self, parent=parent,
                           max_entries=self.get_option('max_entries', 50))
     SpyderPluginMixin.__init__(self, parent)
     
     # Initialize plugin
     self.initialize_plugin()
Ejemplo n.º 2
0
 def __init__(self, parent=None):
     ProfilerWidget.__init__(self, parent=parent,
                           max_entries=self.get_option('max_entries', 50))
     SpyderPluginMixin.__init__(self, parent)
     
     # Initialize plugin
     self.initialize_plugin()
Ejemplo 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_()
     ProfilerWidget.analyze(self, filename)
Ejemplo n.º 4
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)
Ejemplo n.º 5
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)