[Python-checkins] r43372 - peps/trunk/pep2pyramid.py

david.goodger python-checkins at python.org
Tue Mar 28 03:35:12 CEST 2006


Author: david.goodger
Date: Tue Mar 28 03:35:11 2006
New Revision: 43372

Modified:
   peps/trunk/pep2pyramid.py
Log:
default args to None

Modified: peps/trunk/pep2pyramid.py
==============================================================================
--- peps/trunk/pep2pyramid.py	(original)
+++ peps/trunk/pep2pyramid.py	Tue Mar 28 03:35:11 2006
@@ -485,7 +485,7 @@
     sys.stdout.flush()
 
 
-def build_peps(args):
+def build_peps(args=None):
     if args:
         filenames = pep_filename_generator(args)
     else:


More information about the Python-checkins mailing list