[pywin32-checkins] pywin32/com/win32com/client combrowse.py, 1.10, 1.11
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2008-12-04 03:48:49
|
Update of /cvsroot/pywin32/pywin32/com/win32com/client In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv23726/com/win32com/client Modified Files: combrowse.py Log Message: correct previous checking - atof should have become float()! Index: combrowse.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/com/win32com/client/combrowse.py,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** combrowse.py 4 Dec 2008 03:10:02 -0000 1.10 --- combrowse.py 4 Dec 2008 03:48:43 -0000 1.11 *************** *** 499,503 **** break try: ! versionFlt = int(versionStr) except ValueError: versionFlt = 0 # ???? --- 499,503 ---- break try: ! versionFlt = float(versionStr) except ValueError: versionFlt = 0 # ???? |