Raise TypeError, not KeyError, on unknown keyword argument.
diff --git a/Python/ceval.c b/Python/ceval.c
index 5c812c0..5ccccbb 100644
--- a/Python/ceval.c
+++ b/Python/ceval.c
@@ -28,7 +28,6 @@
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 @@
}
if (j >= co->co_argcount) {
if (kwdict == NULL) {
- err_setval(KeyError/*XXX*/, keyword);
+ err_setval(TypeError, keyword);
goto fail;
}
mappinginsert(kwdict, keyword, value);