Update of /cvsroot/pywin32/pywin32/com/win32com/client
In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv27465/com/win32com/client
Modified Files:
Tag: py3k
combrowse.py gencache.py
Log Message:
minor import tweaks from the trunk
Index: combrowse.py
===================================================================
RCS file: /cvsroot/pywin32/pywin32/com/win32com/client/combrowse.py,v
retrieving revision 1.8.2.5
retrieving revision 1.8.2.6
diff -C2 -d -r1.8.2.5 -r1.8.2.6
*** combrowse.py 4 Dec 2008 05:08:41 -0000 1.8.2.5
--- combrowse.py 9 Dec 2008 13:10:15 -0000 1.8.2.6
***************
*** 25,29 ****
import win32con
import win32api, win32ui
! import string, sys
import pythoncom
from win32com.client import util
--- 25,29 ----
import win32con
import win32api, win32ui
! import sys
import pythoncom
from win32com.client import util
Index: gencache.py
===================================================================
RCS file: /cvsroot/pywin32/pywin32/com/win32com/client/gencache.py,v
retrieving revision 1.32.2.4
retrieving revision 1.32.2.5
diff -C2 -d -r1.32.2.4 -r1.32.2.5
*** gencache.py 27 Nov 2008 11:31:04 -0000 1.32.2.4
--- gencache.py 9 Dec 2008 13:10:15 -0000 1.32.2.5
***************
*** 49,56 ****
demandGeneratedTypeLibraries = {}
! try:
! import cPickle as pickle
! except ImportError:
! import pickle
def __init__():
--- 49,53 ----
demandGeneratedTypeLibraries = {}
! import pickle as pickle
def __init__():
|