--- jython clean/org/python/core/PyDictionary.java 2005-11-15 19:37:28.000000000 -0500 +++ jython/org/python/core/PyDictionary.java 2006-03-20 23:27:19.390625000 -0500 @@ -938,7 +938,7 @@ } int n; if ((n = pair.__len__()) != 2) { - throw Py.TypeError("dictionary update sequence element #"+cnt+ + throw Py.ValueError("dictionary update sequence element #"+cnt+ " has length "+n+"; 2 is required"); } this.__setitem__(pair.__getitem__(0),pair.__getitem__(1));