Update of /cvsroot/pywin32/pywin32/com/win32comext/axscript/client
In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv27729/com/win32comext/axscript/client
Modified Files:
Tag: py3k
framework.py
Log Message:
merge various minor changes from trunk
Index: framework.py
===================================================================
RCS file: /cvsroot/pywin32/pywin32/com/win32comext/axscript/client/framework.py,v
retrieving revision 1.25.2.3
retrieving revision 1.25.2.4
diff -C2 -d -r1.25.2.3 -r1.25.2.4
*** framework.py 27 Nov 2008 11:31:05 -0000 1.25.2.3
--- framework.py 4 Dec 2008 05:06:25 -0000 1.25.2.4
***************
*** 747,753 ****
def ResetNamedItems(self):
# Due to the way we work, we re-create persistent ones.
- si = self.subItems.items()
self.subItems = {}
! for name, item in si:
item.Close()
if item.flags & axscript.SCRIPTITEM_ISPERSISTENT:
--- 747,752 ----
def ResetNamedItems(self):
# Due to the way we work, we re-create persistent ones.
self.subItems = {}
! for name, item in self.subItems.items():
item.Close()
if item.flags & axscript.SCRIPTITEM_ISPERSISTENT:
|