Python 3 COME_FROM -> COME_FROM_WITH appropriately

This commit is contained in:
rocky
2016-09-26 08:09:05 -04:00
parent ccd129b377
commit c87710dd4b
5 changed files with 7 additions and 9 deletions

View File

@@ -206,7 +206,7 @@ class Scanner3(Scanner):
# Adjust the grammar and remove the below
and (self.opName(jump_offset)[len('SETUP_'):]
== action.name)
and action.name in ['EXCEPT', 'LOOP']):
and action.name in ['EXCEPT', 'LOOP', 'WITH']):
come_from_name = '%s_%s' % (
(come_from_name, action.name))
pass