[pywin32-checkins] pywin32/win32/test test_odbc.py,1.6,1.7
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2007-05-24 05:38:39
|
Update of /cvsroot/pywin32/pywin32/win32/test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15039/win32/test Modified Files: test_odbc.py Log Message: missing import in test code that only shows up on failure! Index: test_odbc.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/win32/test/test_odbc.py,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** test_odbc.py 20 May 2007 11:08:22 -0000 1.6 --- test_odbc.py 24 May 2007 05:38:35 -0000 1.7 *************** *** 10,13 **** --- 10,14 ---- from win32com.client.gencache import EnsureDispatch from win32com.client import constants + import pythoncom class TestStuff(unittest.TestCase): |