Possibly addresses issue #215

This commit is contained in:
rocky
2019-01-26 18:18:21 -05:00
parent 9a14db567b
commit e1628d4d3a
2 changed files with 13 additions and 8 deletions

View File

@@ -239,6 +239,8 @@ class Python36Parser(Python35Parser):
WITH_CLEANUP_START WITH_CLEANUP_FINISH END_FINALLY
"""
self.addRule(rules_str, nop_func)
pass
pass
def custom_classfunc_rule(self, opname, token, customize, next_token):
@@ -346,6 +348,7 @@ class Python36Parser(Python35Parser):
return True
nt = nt[0]
pass
pass
return False
class Python36ParserSingle(Python36Parser, PythonParserSingle):
pass