diff options
Diffstat (limited to 'Doc/library/inspect.rst')
-rw-r--r-- | Doc/library/inspect.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/inspect.rst b/Doc/library/inspect.rst index 8d25b1e..59fd937 100644 --- a/Doc/library/inspect.rst +++ b/Doc/library/inspect.rst @@ -787,7 +787,7 @@ function. functions:: def test(a, *, b): - ... + ... sig = signature(test) ba = sig.bind(10, b=20) |