docs.inspect: Fix BoundArguments example. Issue #22998.

This commit is contained in:
Yury Selivanov 2014-12-04 22:48:47 -05:00
parent 96a4b5adfc
commit ed648a35ec
1 changed files with 2 additions and 1 deletions

View File

@ -678,7 +678,8 @@ function.
((5,), {})
>>> for param in sig.parameters.values():
... if param.name not in ba.arguments:
... if (param.name not in ba.arguments
... and param.default is not param.empty):
... ba.arguments[param.name] = param.default
>>> ba.args, ba.kwargs