[pywin32-checkins] pywin32/win32/Demos rastest.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/win32/Demos In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv32320/win32/Demos Modified Files: rastest.py Log Message: Modernize != syntax (ie, remove old '<>' Index: rastest.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/win32/Demos/rastest.py,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** rastest.py 3 Feb 2003 00:30:29 -0000 1.3 --- rastest.py 27 Nov 2008 04:15:21 -0000 1.4 *************** *** 69,73 **** # hras, rc = win32ras.Dial(None, None, (entryName, ),theCallback) # print hras, rc ! if not bUseCallback and rc <> 0: print "Could not dial the RAS connection:", win32ras.GetErrorString(rc) hras = HangUp( hras ) --- 69,73 ---- # hras, rc = win32ras.Dial(None, None, (entryName, ),theCallback) # print hras, rc ! if not bUseCallback and rc != 0: print "Could not dial the RAS connection:", win32ras.GetErrorString(rc) hras = HangUp( hras ) |