Get ready for release 3.5.0

This commit is contained in:
rocky
2019-10-12 19:53:17 -04:00
parent 5cb46c2ed3
commit 0b3d6b8add
22 changed files with 329 additions and 7 deletions

View File

@@ -0,0 +1,25 @@
# Copyright (c) 2019 Rocky Bernstein
from spark_parser import DEFAULT_DEBUG as PARSER_DEFAULT_DEBUG
from uncompyle6.parser import PythonParserSingle
from uncompyle6.parsers.parse12 import Python12Parser
class Python11Parser(Python12Parser):
def __init__(self, debug_parser=PARSER_DEFAULT_DEBUG):
super(Python12Parser, self).__init__(debug_parser)
self.customized = {}
class Python11ParserSingle(Python11Parser, PythonParserSingle):
pass
if __name__ == "__main__":
# Check grammar
p = Python12Parser()
p.check_grammar()
p.dump_grammar()
# local variables:
# tab-width: 4