You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I had tried to build the latest version since PyPI contains outdated one. The unit test failed twice when expecting SyntaxError protection against make goto in a loop scope.
def test_jump_into_loop():
def func():
for i in range(10):
label .loop
goto .loop
> pytest.raises(SyntaxError, with_goto, func)
E Failed: DID NOT RAISE <class 'SyntaxError'>
I checked the code manually in the ipython, the func really avoid raising exceptions and hangs the python if called.
I had tried to build the latest version since PyPI contains outdated one. The unit test failed twice when expecting SyntaxError protection against make goto in a loop scope.
I checked the code manually in the ipython, the func really avoid raising exceptions and hangs the python if called.
The text was updated successfully, but these errors were encountered: