[pywin32-checkins] pywin32/com/win32com/test testShell.py,1.6,1.7
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2005-02-13 12:01:30
|
Update of /cvsroot/pywin32/pywin32/com/win32com/test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31294 Modified Files: testShell.py Log Message: Skip a test in 2.2 that uses a 2.3-ism Index: testShell.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/com/win32com/test/testShell.py,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** testShell.py 26 May 2004 09:40:21 -0000 1.6 --- testShell.py 13 Feb 2005 12:01:20 -0000 1.7 *************** *** 108,111 **** --- 108,114 ---- def testComplex(self): + if sys.hexversion < 0x2030000: + # no kw-args to dict in 2.2 - not worth converting! + return clsid = pythoncom.MakeIID("{CD637886-DB8B-4b04-98B5-25731E1495BE}") d = dict(cFileName="foo.txt", |