Slight picayune correction

This commit is contained in:
rocky
2017-12-04 10:20:25 -05:00
parent 9506412aba
commit 8dd953de48

View File

@@ -224,8 +224,8 @@ class Python2Parser(PythonParser):
Here, we add additional rules based on specific instructions Here, we add additional rules based on specific instructions
that are in the instruction/token stream. that are in the instruction/token stream.
For example if we see a pretty rare DELETE_DEREF instruction we'll For example if we see a pretty rare JUMP_IF_NOT_DEBUG
add the grammar for that. instruction we'll add the grammar for that.
More importantly, here we add grammar rules for instructions More importantly, here we add grammar rules for instructions
that may access a variable number of stack items. CALL_FUNCTION, that may access a variable number of stack items. CALL_FUNCTION,
@@ -234,6 +234,7 @@ class Python2Parser(PythonParser):
Without custom rules, there can be an super-exponential number of Without custom rules, there can be an super-exponential number of
derivations. See the deparsing paper for an elaboration of derivations. See the deparsing paper for an elaboration of
this. this.
""" """
if 'PyPy' in customize: if 'PyPy' in customize: