Index: PyDictionary.java =================================================================== RCS file: /cvsroot/jython/jython/org/python/core/PyDictionary.java,v retrieving revision 2.31 diff -u -r2.31 PyDictionary.java --- PyDictionary.java 16 Nov 2005 00:37:28 -0000 2.31 +++ PyDictionary.java 6 Dec 2005 02:56:08 -0000 @@ -944,10 +944,10 @@ this.__setitem__(pair.__getitem__(0),pair.__getitem__(1)); } } - for (int i=0; i < kwds.length; i++) { - this.__setitem__(kwds[i],args[nargs+i]); - } } + for (int i=0; i < kwds.length; i++) { + this.__setitem__(kwds[i],args[nargs+i]); + } } public PyObject fromkeys(PyObject keys) { return dict_fromkeys(keys, null);