Merge branch 'master' into python-2.4

This commit is contained in:
rocky
2018-01-09 00:20:38 -05:00
4 changed files with 23 additions and 11 deletions

View File

@@ -5,9 +5,9 @@ spark grammar differences over Python 3.6 for Python 3.7
from uncompyle6.parser import PythonParserSingle
from spark_parser import DEFAULT_DEBUG as PARSER_DEFAULT_DEBUG
from uncompyle6.parsers.parse36 import Python37Parser
from uncompyle6.parsers.parse36 import Python36Parser
class Python36Parser(Python35Parser):
class Python37Parser(Python36Parser):
def __init__(self, debug_parser=PARSER_DEFAULT_DEBUG):
super(Python37Parser, self).__init__(debug_parser)