/usr/lib/python2.7/dist-packages/MLBviewer/mlbProcess.py is in mlbviewer 2015.sf.1-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 | #!/usr/bin/env python
# mlbviewer is free software; you can redistribute it and/or modify
# under the terms of the GNU General Public License as published by the
# Free Software Foundation, Version 2.
#
# mlbviewer is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# General Public License for more details.
#
# For a copy of the GNU General Public License, write to the Free
# Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
# 02111-1307 USA
import subprocess
import signal
import os
import time
class MLBprocess:
    def __init__(self,cmd_str,retries=0,errlog=None,stdout=None):
        self.cmd_str = cmd_str
        self.retries = retries
        self.retcode = None
        self.process = None
        self.errlog  = errlog
        self.stdout  = stdout
    def replace(self,cmd_str,retries=0,errlog=None,stdout=None):
        self.__init__(cmd_str,retries,errlog,stdout)
    def open(self):
        self.process = subprocess.Popen(self.cmd_str,shell=True,
                                                     preexec_fn=os.setsid,
                                                     stdout=self.stdout,
                                                     stderr=self.errlog)
        self.retcode = None
        return self.process
    def wait(self):
        self.process.wait()
    def close(self,signal=signal.SIGTERM):
        try:
            os.killpg(self.process.pid,signal)
            retcode = self.process.wait()
        except:
            retcode = -1
        self.retries -= 1
        self.process = None
        return retcode
    def poll(self):
        if self.process is not None:
            retcode = self.process.poll()
        else:
            return -1
        if retcode is not None:
            retcode = self.process.wait()
            self.retries -= 1
            self.process = None
            return retcode
        else:
            return None
            
    def waitInteractive(self,myscr):
        myscr.timeout(5000)
        while self.poll() is None:
            try:
                c = myscr.getch()
            except KeyboardInterrupt:
                myscr.clear()
                myscr.addstr('Quitting player, cleaning up...')
                myscr.refresh()
                self.close(signal=signal.SIGINT)
                time.sleep(1)
            if c in ('Close', ord('q')):
                myscr.clear()
                myscr.addstr('Quitting player, cleaning up...')
                self.close(signal=signal.SIGINT)
                time.sleep(1)
                continue
        myscr.timeout(-1)   
            
 |