You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-03 16:59:52 +08:00
Track spark_parser changes
This commit is contained in:
@@ -39,7 +39,7 @@ entry_points = {
|
|||||||
'pydisassemble=uncompyle6.bin.pydisassemble:main',
|
'pydisassemble=uncompyle6.bin.pydisassemble:main',
|
||||||
]}
|
]}
|
||||||
ftp_url = None
|
ftp_url = None
|
||||||
install_requires = ['spark-parser >= 1.7.1, < 1.8.0',
|
install_requires = ['spark-parser >= 1.8.0, < 1.9.0',
|
||||||
'xdis >= 3.6.1, < 3.7.0', 'six']
|
'xdis >= 3.6.1, < 3.7.0', 'six']
|
||||||
license = 'MIT'
|
license = 'MIT'
|
||||||
mailing_list = 'python-debugger@googlegroups.com'
|
mailing_list = 'python-debugger@googlegroups.com'
|
||||||
|
@@ -14,7 +14,8 @@ def test_grammar():
|
|||||||
"Remaining tokens %s\n====\n%s" % (remain_tokens, p.dump_grammar())
|
"Remaining tokens %s\n====\n%s" % (remain_tokens, p.dump_grammar())
|
||||||
|
|
||||||
p = get_python_parser(PYTHON_VERSION, is_pypy=IS_PYPY)
|
p = get_python_parser(PYTHON_VERSION, is_pypy=IS_PYPY)
|
||||||
lhs, rhs, tokens, right_recursive = p.check_sets()
|
(lhs, rhs, tokens,
|
||||||
|
right_recursive, dup_rhs) = p.check_sets()
|
||||||
expect_lhs = set(['expr1024', 'pos_arg'])
|
expect_lhs = set(['expr1024', 'pos_arg'])
|
||||||
unused_rhs = set(['build_list', 'call_function', 'mkfunc',
|
unused_rhs = set(['build_list', 'call_function', 'mkfunc',
|
||||||
'mklambda',
|
'mklambda',
|
||||||
|
Reference in New Issue
Block a user