Update of /cvsroot/pywin32/pywin32/com/win32com/client
In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv29773/com/win32com/client
Modified Files:
Tag: py3k
gencache.py
Log Message:
merge more .py changes from the trunk (via 2to3)
Index: gencache.py
===================================================================
RCS file: /cvsroot/pywin32/pywin32/com/win32com/client/gencache.py,v
retrieving revision 1.32.2.5
retrieving revision 1.32.2.6
diff -C2 -d -r1.32.2.5 -r1.32.2.6
*** gencache.py 9 Dec 2008 13:10:15 -0000 1.32.2.5
--- gencache.py 11 Dec 2008 05:45:21 -0000 1.32.2.6
***************
*** 74,81 ****
# Load the dictionary from a .zip file if that is where we live.
if hasattr(win32com, "__loader__"):
! try:
! import cStringIO as io
! except ImportError:
! import io
loader = win32com.__loader__
arc_path = loader.archive
--- 74,78 ----
# Load the dictionary from a .zip file if that is where we live.
if hasattr(win32com, "__loader__"):
! import io as io
loader = win32com.__loader__
arc_path = loader.archive
|