You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
510 B
29 lines
510 B
8 years ago
|
import sys
|
||
|
import os.path
|
||
|
from .core import AbstractControl
|
||
|
|
||
|
|
||
|
class QuitControl(AbstractControl):
|
||
|
@property
|
||
|
def visible(self):
|
||
|
return False
|
||
|
|
||
|
def respond_to(self, command):
|
||
|
if command == 'q':
|
||
|
sys.exit(0)
|
||
|
elif command == 'refresh':
|
||
|
return True
|
||
|
|
||
|
|
||
|
class ChildReaperControl(AbstractControl):
|
||
|
@property
|
||
|
def visible(self):
|
||
|
return False
|
||
|
|
||
|
def periodic(self):
|
||
|
try:
|
||
|
os.wait3(os.WNOHANG)
|
||
|
except:
|
||
|
pass
|
||
|
|