Add semantic action rule for except_return

This commit is contained in:
rocky
2018-03-29 22:45:27 -04:00
parent 9be4908c9c
commit 64ffa5f6ab
2 changed files with 1 additions and 0 deletions

Binary file not shown.

View File

@@ -420,6 +420,7 @@ def customize_for_version(self, is_pypy, version):
'fstring_multi': ( "f'''%c'''", 0),
'func_args36': ( "%c(**", 0),
'try_except36': ( '%|try:\n%+%c%-%c\n\n', 1, 2 ),
'except_return': ( '%|except:\n%+%c%-', 3 ),
'unpack_list': ( '*%c', (0, 'list') ),
'call_ex' : (
'%c(%p)',