Update of /cvsroot/pywin32/pywin32/win32/Demos/service
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19664/win32/Demos/service
Modified Files:
pipeTestService.py
Log Message:
Add optional service description
Index: pipeTestService.py
===================================================================
RCS file: /cvsroot/pywin32/pywin32/win32/Demos/service/pipeTestService.py,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** pipeTestService.py 10 Sep 2004 06:20:36 -0000 1.5
--- pipeTestService.py 31 Jan 2005 04:11:59 -0000 1.6
***************
*** 36,39 ****
--- 36,41 ----
_svc_name_ = "PyPipeTestService"
_svc_display_name_ = "Python Pipe Test Service"
+ _svc_description_ = "Tests Python service framework by receiving and echoing messages over a named pipe"
+
def __init__(self, args):
win32serviceutil.ServiceFramework.__init__(self, args)
|