Update of /cvsroot/pywin32/pywin32
In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv30987
Modified Files:
setup.py
Log Message:
fix syntax so 2to3 does the right-thing
Index: setup.py
===================================================================
RCS file: /cvsroot/pywin32/pywin32/setup.py,v
retrieving revision 1.88
retrieving revision 1.89
diff -C2 -d -r1.88 -r1.89
*** setup.py 5 Jan 2009 11:01:45 -0000 1.88
--- setup.py 7 Jan 2009 04:11:06 -0000 1.89
***************
*** 76,80 ****
# using the 'imports' fixer and therefore start much faster...
if is_py3k:
! import winreg as _winreg
else:
import _winreg
--- 76,80 ----
# using the 'imports' fixer and therefore start much faster...
if is_py3k:
! import winreg as winreg
else:
import _winreg
|