[Python-checkins] r68336 - peps/trunk/pep0/pep.py

benjamin.peterson python-checkins at python.org
Mon Jan 5 04:48:09 CET 2009


Author: benjamin.peterson
Date: Mon Jan  5 04:48:09 2009
New Revision: 68336

Log:
add nickname in parenthesis to name listing for clarity

Modified:
   peps/trunk/pep0/pep.py

Modified: peps/trunk/pep0/pep.py
==============================================================================
--- peps/trunk/pep0/pep.py	(original)
+++ peps/trunk/pep0/pep.py	Mon Jan  5 04:48:09 2009
@@ -76,6 +76,7 @@
                 self.nick = "JvR"
             else:
                 raise ValueError("unkown van Rossum %r!" % self)
+            self.last_first += " (%s)" % (self.nick,)
         else:
             self.nick = self.last
 


More information about the Python-checkins mailing list