You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-04 01:09:52 +08:00
Slight picayune correction
This commit is contained in:
@@ -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:
|
||||||
|
Reference in New Issue
Block a user