[pywin32-checkins] pywin32/Pythonwin/pywin/debugger configui.py, 1.1.4.2, 1.1.4.3
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2008-10-02 11:39:05
|
Update of /cvsroot/pywin32/pywin32/Pythonwin/pywin/debugger In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv14408/Pythonwin/pywin/debugger Modified Files: Tag: py3k configui.py Log Message: oops - correct merge - re-add py3k friendly changes. Index: configui.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/Pythonwin/pywin/debugger/configui.py,v retrieving revision 1.1.4.2 retrieving revision 1.1.4.3 diff -C2 -d -r1.1.4.2 -r1.1.4.3 *** configui.py 2 Oct 2008 11:36:43 -0000 1.1.4.2 --- configui.py 2 Oct 2008 11:38:54 -0000 1.1.4.3 *************** *** 18,23 **** self.UpdateData() dirty = 0 ! for key, val in self.items(): ! if self.options.has_key(key): if self.options[key] != val: self.options[key] = val --- 18,23 ---- self.UpdateData() dirty = 0 ! for key, val in list(self.items()): ! if key in self.options: if self.options[key] != val: self.options[key] = val |