[Python-checkins] r82624 - python/branches/py3k/Grammar/Grammar

mark.dickinson python-checkins at python.org
Wed Jul 7 18:10:44 CEST 2010


Author: mark.dickinson
Date: Wed Jul  7 18:10:44 2010
New Revision: 82624

Log:
Kill gratuitous space.

Modified:
   python/branches/py3k/Grammar/Grammar

Modified: python/branches/py3k/Grammar/Grammar
==============================================================================
--- python/branches/py3k/Grammar/Grammar	(original)
+++ python/branches/py3k/Grammar/Grammar	Wed Jul  7 18:10:44 2010
@@ -29,7 +29,7 @@
                 | tfpdef ['=' test] (',' tfpdef ['=' test])* [','])
 tfpdef: NAME [':' test]
 varargslist: ((vfpdef ['=' test] ',')*
-              ('*' [vfpdef] (',' vfpdef ['=' test])*  [',' '**' vfpdef] | '**' vfpdef)
+              ('*' [vfpdef] (',' vfpdef ['=' test])* [',' '**' vfpdef] | '**' vfpdef)
               | vfpdef ['=' test] (',' vfpdef ['=' test])* [','])
 vfpdef: NAME
 


More information about the Python-checkins mailing list