mirror of https://github.com/python/cpython.git
Raise TypeError, not KeyError, on unknown keyword argument.
This commit is contained in:
parent
3f3bb3d3c9
commit
6d43c5de5a
|
@ -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 how to pass arguments to call_trace?
|
||||||
XXX totally get rid of access stuff
|
XXX totally get rid of access stuff
|
||||||
XXX speed up searching for keywords by using a dictionary
|
XXX speed up searching for keywords by using a dictionary
|
||||||
XXX unknown keyword shouldn't raise KeyError?
|
|
||||||
XXX document it!
|
XXX document it!
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -449,7 +448,7 @@ eval_code2(co, globals, locals,
|
||||||
}
|
}
|
||||||
if (j >= co->co_argcount) {
|
if (j >= co->co_argcount) {
|
||||||
if (kwdict == NULL) {
|
if (kwdict == NULL) {
|
||||||
err_setval(KeyError/*XXX*/, keyword);
|
err_setval(TypeError, keyword);
|
||||||
goto fail;
|
goto fail;
|
||||||
}
|
}
|
||||||
mappinginsert(kwdict, keyword, value);
|
mappinginsert(kwdict, keyword, value);
|
||||||
|
|
Loading…
Reference in New Issue