[Python-checkins] r59025 - peps/trunk/pep-0362.txt

brett.cannon python-checkins at python.org
Sat Nov 17 03:36:41 CET 2007


Author: brett.cannon
Date: Sat Nov 17 03:36:40 2007
New Revision: 59025

Modified:
   peps/trunk/pep-0362.txt
Log:
Fix a typo in the annotation for Signature.bind().


Modified: peps/trunk/pep-0362.txt
==============================================================================
--- peps/trunk/pep-0362.txt	(original)
+++ peps/trunk/pep-0362.txt	Sat Nov 17 03:36:40 2007
@@ -89,7 +89,7 @@
     List of the parameters of the function as represented by
     Parameter objects in the order of its definition (keyword-only
     arguments are in the order listed by ``code.co_varnames``).
-* bind(\*args, \*\*kwargs) -> dict(str, Parameter)
+* bind(\*args, \*\*kwargs) -> dict(str, object)
     Create a mapping from arguments to parameters.  The keys are the
     names of the parameter that an argument maps to with the value
     being the value the parameter would have if this function was


More information about the Python-checkins mailing list