[当您调用python函数时,如果您传递的内容与函数签名不符,它将检查参数并引发TypeError s:
TypeError
A takes from X to Y positional arguments but Z were given
got multiple values for argument X
got an unexpected keyword argument
等
我想查看执行这些检查的代码,以便我更好地了解python如何以及何时执行这些检查。
这里是参考图的一部分: