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

This commit is contained in:
Yury Selivanov 2014-12-04 22:47:44 -05:00
parent f3e2e09213
commit a5ef83244b
1 changed files with 2 additions and 1 deletions

View File

@ -642,7 +642,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