[pywin32-checkins] pywin32/Pythonwin/pywin/debugger configui.py, 1.2, 1.3
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2008-10-02 11:41:25
|
Update of /cvsroot/pywin32/pywin32/Pythonwin/pywin/debugger In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv14550/Pythonwin/pywin/debugger Modified Files: configui.py Log Message: merge rest of py3k changes. Index: configui.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/Pythonwin/pywin/debugger/configui.py,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** configui.py 2 Oct 2008 11:16:53 -0000 1.2 --- configui.py 2 Oct 2008 11:41:15 -0000 1.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 |