[pywin32-checkins] pywin32/Pythonwin/pywin/framework mdi_pychecker.py, 1.2.2.3, 1.2.2.4
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
|
From: Mark H. <mha...@us...> - 2009-01-27 07:48:52
|
Update of /cvsroot/pywin32/pywin32/Pythonwin/pywin/framework In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv15819/Pythonwin/pywin/framework Modified Files: Tag: py3k mdi_pychecker.py Log Message: merge some 64bit changes from the trunk Index: mdi_pychecker.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/Pythonwin/pywin/framework/mdi_pychecker.py,v retrieving revision 1.2.2.3 retrieving revision 1.2.2.4 diff -C2 -d -r1.2.2.3 -r1.2.2.4 *** mdi_pychecker.py 27 Nov 2008 11:31:03 -0000 1.2.2.3 --- mdi_pychecker.py 27 Jan 2009 07:48:39 -0000 1.2.2.4 *************** *** 291,295 **** py = os.path.join(sys.prefix, 'python.exe') if not os.path.isfile(py): ! py = os.path.join(sys.prefix, 'PCBuild', 'python.exe') try: py = win32api.GetShortPathName(py) --- 291,298 ---- py = os.path.join(sys.prefix, 'python.exe') if not os.path.isfile(py): ! if "64 bit" in sys.version: ! py = os.path.join(sys.prefix, 'PCBuild', 'amd64', 'python.exe') ! else: ! py = os.path.join(sys.prefix, 'PCBuild', 'python.exe') try: py = win32api.GetShortPathName(py) |