Change name of function for 'inspect' module to have to return Signature

objects.
This commit is contained in:
Brett Cannon 2006-08-22 21:19:53 +00:00
parent 27ea465466
commit 2b89abe649
1 changed files with 1 additions and 1 deletions

View File

@ -130,7 +130,7 @@ When to construct the Parameter object?
The Parameter object can either be created in an eager or lazy
fashion. In the eager situation, the object can be created during
creation of the function object. In the lazy situation, one would
pass a function object to ``inspect.signature()`` and that would
pass a function object to ``inspect.getsignature()`` and that would
generate the Signature object and store it to ``__signature__`` if
needed, and then return the value of ``__signature__``.