[pywin32-checkins] pywin32/com/win32com/test testPyComTest.py,1.14,1.15
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: <mha...@us...> - 2003-07-26 14:13:35
|
Update of /cvsroot/pywin32/pywin32/com/win32com/test In directory sc8-pr-cvs1:/tmp/cvs-serv6997 Modified Files: testPyComTest.py Log Message: RegisterInterfaces would fail if gencache had already been run - exercise that here Index: testPyComTest.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/com/win32com/test/testPyComTest.py,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** testPyComTest.py 3 Jul 2003 03:44:39 -0000 1.14 --- testPyComTest.py 26 Jul 2003 14:13:33 -0000 1.15 *************** *** 22,25 **** --- 22,30 ---- import sys + # We had a bg where RegisterInterfaces would fail if gencache had + # already been run - exercise that here + from win32com import universal + universal.RegisterInterfaces('{6BCDCB60-5605-11D0-AE5F-CADD4C000000}', 0, 1, 1) + verbose = 0 |