[Python-checkins] r88416 - sandbox/trunk/pep362/pep362.py

brett.cannon python-checkins at python.org
Sun Feb 13 20:05:24 CET 2011


Author: brett.cannon
Date: Sun Feb 13 20:05:24 2011
New Revision: 88416

Log:
Minor whitespace cleanup.

Modified:
   sandbox/trunk/pep362/pep362.py

Modified: sandbox/trunk/pep362/pep362.py
==============================================================================
--- sandbox/trunk/pep362/pep362.py	(original)
+++ sandbox/trunk/pep362/pep362.py	Sun Feb 13 20:05:24 2011
@@ -13,6 +13,7 @@
     """Represent a parameter in a function signature.
 
     Each parameter has the following attributes:
+
     * name
         The name of the parameter.
     * position
@@ -20,8 +21,9 @@
         variable position argument.
     * keyword_only
         True if the parameter is keyword-only.
-    
+
     And the following optoinal attributes:
+
     * default_value
         The default value for the parameter, if one exists.
     * annotation
@@ -199,10 +201,10 @@
     def bind(self, *args, **kwargs):
         """Return a dictionary mapping function arguments to their parameter
         variables, if possible.
-        
+
         Multiple arguments for the same parameter using keyword arguments
         cannot be detected.
-       
+
         """
         bindings = {}
         if self.var_args:


More information about the Python-checkins mailing list