[pywin32-checkins] pywin32/com/win32com/servers dictionary.py, 1.3, 1.4
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2008-11-27 04:15:27
|
Update of /cvsroot/pywin32/pywin32/com/win32com/servers In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv32320/com/win32com/servers Modified Files: dictionary.py Log Message: Modernize != syntax (ie, remove old '<>' Index: dictionary.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/com/win32com/servers/dictionary.py,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** dictionary.py 16 Oct 2000 02:36:15 -0000 1.3 --- dictionary.py 27 Nov 2008 04:15:21 -0000 1.4 *************** *** 97,101 **** return None # unknown keys return None (VT_NULL) ! if l <> 2: raise COMException(scode=winerror.DISP_E_BADPARAMCOUNT) if args[1] is None: --- 97,101 ---- return None # unknown keys return None (VT_NULL) ! if l != 2: raise COMException(scode=winerror.DISP_E_BADPARAMCOUNT) if args[1] is None: |