Kaydet (Commit) 6d43c5de authored tarafından Guido van Rossum's avatar Guido van Rossum

Raise TypeError, not KeyError, on unknown keyword argument.

üst 3f3bb3d3
......@@ -28,7 +28,6 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
XXX how to pass arguments to call_trace?
XXX totally get rid of access stuff
XXX speed up searching for keywords by using a dictionary
XXX unknown keyword shouldn't raise KeyError?
XXX document it!
*/
......@@ -449,7 +448,7 @@ eval_code2(co, globals, locals,
}
if (j >= co->co_argcount) {
if (kwdict == NULL) {
err_setval(KeyError/*XXX*/, keyword);
err_setval(TypeError, keyword);
goto fail;
}
mappinginsert(kwdict, keyword, value);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment