[pywin32-checkins] pywin32/win32/Lib win32serviceutil.py,1.14,1.15
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
|
From: Mark H. <mha...@us...> - 2004-09-27 21:39:47
|
Update of /cvsroot/pywin32/pywin32/win32/Lib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15636 Modified Files: win32serviceutil.py Log Message: [ 1032764 ] Minor tweak to win32serviceutil.ServiceFramework Adds a couple of comments to the service base class. Index: win32serviceutil.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/win32/Lib/win32serviceutil.py,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** win32serviceutil.py 13 Sep 2004 02:19:18 -0000 1.14 --- win32serviceutil.py 27 Sep 2004 21:39:37 -0000 1.15 *************** *** 643,648 **** --- 643,655 ---- # class ServiceFramework: + # Required Attributes: # _svc_name = The service name # _svc_display_name = The service display name + + # Optional Attributes: + _svc_deps_ = None # sequence of service names on which this depends + _exe_name_ = None # Default to PythonService.exe + _exe_args_ = None # Default to no arguments + def __init__(self, args): import servicemanager |