diff options
author | Georg Brandl <georg@python.org> | 2009-01-03 13:45:15 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-01-03 13:45:15 (GMT) |
commit | bc1309255e3ff081d6216673ea508e5d1c078953 (patch) | |
tree | d43b87d5c5d471be216ded48fdfce79855e161f8 /Parser | |
parent | 4aa04db5735795289b7a6a23b4a485ad6c64f1ac (diff) | |
download | cpython-bc1309255e3ff081d6216673ea508e5d1c078953.zip cpython-bc1309255e3ff081d6216673ea508e5d1c078953.tar.gz cpython-bc1309255e3ff081d6216673ea508e5d1c078953.tar.bz2 |
Remove useless string literal.
Diffstat (limited to 'Parser')
-rw-r--r-- | Parser/asdl.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Parser/asdl.py b/Parser/asdl.py index bd892b6..7620d58 100644 --- a/Parser/asdl.py +++ b/Parser/asdl.py @@ -167,7 +167,7 @@ class ASDLParser(spark.GenericParser, object): return Product(fields) def p_sum_0(self, (constructor,)): - " sum ::= constructor """ + " sum ::= constructor " return [constructor] def p_sum_1(self, (constructor, _, sum)): |