r51491 - peps/trunk/pep-0362.txt
Author: brett.cannon Date: Tue Aug 22 23:19:53 2006 New Revision: 51491 Modified: peps/trunk/pep-0362.txt Log: Change name of function for 'inspect' module to have to return Signature objects. Modified: peps/trunk/pep-0362.txt ============================================================================== --- peps/trunk/pep-0362.txt (original) +++ peps/trunk/pep-0362.txt Tue Aug 22 23:19:53 2006 @@ -130,7 +130,7 @@ 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__``.
participants (1)
-
brett.cannon