'+' no longer accepted for varargs list
diff --git a/Lib/test/test_grammar.py b/Lib/test/test_grammar.py
index 9662439..6cfda0f 100644
--- a/Lib/test/test_grammar.py
+++ b/Lib/test/test_grammar.py
@@ -76,7 +76,7 @@
 print 'funcdef'
 ### 'def' NAME parameters ':' suite
 ### parameters: '(' [varargslist] ')'
-### varargslist: (fpdef ',')* ('+'|'*') NAME | fpdef (',' fpdef)* [',']
+### varargslist: (fpdef ',')* '*' NAME | fpdef (',' fpdef)* [',']
 ### fpdef: NAME | '(' fplist ')'
 ### fplist: fpdef (',' fpdef)* [',']
 def f1(): pass