Skip to content

Commit

Permalink
#150-Correct/Modify Parser Code
Browse files Browse the repository at this point in the history
Modified `FrontEnd.parser.py` code to conform with new specs of clause `try - exccept`.
  • Loading branch information
PhHays committed Oct 2, 2019
1 parent e69f3d8 commit 346d528
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/FrontEnd/Parser/fe_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -3658,7 +3658,7 @@ def _try_except1(self) -> bool:
if self._current.is_PAROP():
self._append_syntaxic_node()
self._next_token_node()
self._try_except2() ## (notice: always returns True)
self._try_except2()
if self._current.is_PARCL():
self._append_syntaxic_node()
self._next_token_node()
Expand Down

0 comments on commit 346d528

Please sign in to comment.