• Facebook
  • Twitter
  • Reddit
  • StumbleUpon
  • Digg
  • email

All Samples(6)  |  Call(5)  |  Derive(0)  |  Import(1)
No Document.

src/p/y/pywii-HEAD/Python-3.1.2/Demo/tkinter/guido/svkill.py   pywii(Download)
    def do_update(self):
        format = self.format_list[self.format.get()][1]
        view = self.view_list[self.view.get()][1]
        s = subprocess.getoutput('ps %s %s' % (view, format))
        list = splitfields(s, '\n')
        self.header.set(list[0] + '          ')
        del list[0]

src/p/y/pywii-HEAD/Python-3.1.2/Demo/tkinter/guido/kill.py   pywii(Download)
    def do_update(self):
        name, option, column = self.format_list[self.format.get()]
        s = subprocess.getoutput('ps -w ' + option)
        list = splitfields(s, '\n')
        self.header.set(list[0])
        del list[0]
        y = self.frame.vscroll.get()[0]

src/a/t/Athena-Dependencies-Python-HEAD/Demo/tkinter/guido/svkill.py   Athena-Dependencies-Python(Download)
    def do_update(self):
        format = self.format_list[self.format.get()][1]
        view = self.view_list[self.view.get()][1]
        s = subprocess.getoutput('ps %s %s' % (view, format))
        list = splitfields(s, '\n')
        self.header.set(list[0] + '          ')
        del list[0]

src/a/t/Athena-Dependencies-Python-HEAD/Demo/tkinter/guido/kill.py   Athena-Dependencies-Python(Download)
    def do_update(self):
        name, option, column = self.format_list[self.format.get()]
        s = subprocess.getoutput('ps -w ' + option)
        list = splitfields(s, '\n')
        self.header.set(list[0])
        del list[0]
        y = self.frame.vscroll.get()[0]

src/i/p/ipython-py3k-HEAD/tools/make_tarball.py   ipython-py3k(Download)
 
from  toollib import *
 
tag = subprocess.getoutput('git describe')
base_name = 'ipython-%s' % tag
tar_name = '%s.tgz' % base_name
 

src/s/c/screenutils-0.0.1.5.4/screenutils/screen.py   screenutils(Download)
try:
    from commands import getoutput
except:
    from subprocess import getoutput
from threading import Thread
from os import system
from os.path import isfile, getsize