Update of /cvsroot/pywin32/pywin32
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17863
Modified Files:
pywin32_postinstall.py
Log Message:
Register the ActiveScript engine.
Index: pywin32_postinstall.py
===================================================================
RCS file: /cvsroot/pywin32/pywin32/pywin32_postinstall.py,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** pywin32_postinstall.py 24 Sep 2004 07:33:03 -0000 1.12
--- pywin32_postinstall.py 6 Oct 2004 05:16:08 -0000 1.13
***************
*** 10,13 ****
--- 10,14 ----
("win32com.servers.interp", "Interpreter"),
("win32com.servers.dictionary", "DictionaryPolicy"),
+ ("win32com.axscript.client.pyscript","PyScript"),
]
***************
*** 120,123 ****
--- 121,126 ----
__import__(module)
mod = sys.modules[module]
+ flags["finalize_register"] = getattr(mod, "DllRegisterServer", None)
+ flags["finalize_unregister"] = getattr(mod, "DllUnregisterServer", None)
klass = getattr(mod, klass_name)
func(klass, **flags)
|