[pywin32-checkins] pywin32/com/win32com/servers test_pycomtest.py, 1.11, 1.12
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2007-02-07 23:12:39
|
Update of /cvsroot/pywin32/pywin32/com/win32com/servers In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12983/win32com/servers Modified Files: test_pycomtest.py Log Message: Fix issue [ 1651025 ] Use the specified type for constant values This makes constants in a typelib > sys.maxint to correctly be a long Index: test_pycomtest.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/com/win32com/servers/test_pycomtest.py,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** test_pycomtest.py 13 Feb 2006 01:23:48 -0000 1.11 --- test_pycomtest.py 7 Feb 2007 23:12:31 -0000 1.12 *************** *** 118,121 **** --- 118,124 ---- return -1 + def Test6(self, inval): + return inval + def TestOptionals(self, strArg='def', sval=0, lval=1, dval=3.1400001049041748): raise COMException(hresult=winerror.E_NOTIMPL) |