[pywin32-checkins] pywin32 pywin32_postinstall.py,1.28,1.29
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2008-12-04 06:56:47
|
Update of /cvsroot/pywin32/pywin32 In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv2209 Modified Files: pywin32_postinstall.py Log Message: let 2to3 handle module name differences Index: pywin32_postinstall.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/pywin32_postinstall.py,v retrieving revision 1.28 retrieving revision 1.29 diff -C2 -d -r1.28 -r1.29 *** pywin32_postinstall.py 26 Nov 2008 08:39:32 -0000 1.28 --- pywin32_postinstall.py 4 Dec 2008 06:56:36 -0000 1.29 *************** *** 4,11 **** # and creates a pth file import os, sys, glob, shutil, time ! try: ! import _winreg as winreg ! except ImportError: ! import winreg # Send output somewhere so it can be found if necessary... --- 4,8 ---- # and creates a pth file import os, sys, glob, shutil, time ! import _winreg as winreg # Send output somewhere so it can be found if necessary... |