The initial patch #468662 was not applied quite verbatim. This should one
will fix the remaining Jython issues.
This closes patch "[ #490411 ] Jython and test_grammar.py".
diff --git a/Lib/test/test_grammar.py b/Lib/test/test_grammar.py
index da3dad5..bb843fb 100644
--- a/Lib/test/test_grammar.py
+++ b/Lib/test/test_grammar.py
@@ -152,7 +152,8 @@
verify(f3.func_code.co_varnames == ('two', 'arguments'))
if sys.platform.startswith('java'):
verify(f4.func_code.co_varnames ==
- ('two', '(compound, (argument, list))',))
+ ('two', '(compound, (argument, list))', 'compound', 'argument',
+ 'list',))
verify(f5.func_code.co_varnames ==
('(compound, first)', 'two', 'compound', 'first'))
else: