Commit fe8b742b authored by Xavier Thompson's avatar Xavier Thompson

Stop parsing obsolete 'with unlocked'

parent 53814c7d
...@@ -2079,7 +2079,7 @@ def p_with_items(s, is_async=False): ...@@ -2079,7 +2079,7 @@ def p_with_items(s, is_async=False):
else: else:
body = p_suite(s) body = p_suite(s)
return Nodes.GILStatNode(pos, state=state, body=body, condition=condition) return Nodes.GILStatNode(pos, state=state, body=body, condition=condition)
elif not s.in_python_file and s.sy == 'IDENT' and s.systring in ('unlocked', 'rlocked', 'wlocked'): elif not s.in_python_file and s.sy == 'IDENT' and s.systring in ('rlocked', 'wlocked'):
state = s.systring state = s.systring
s.next() s.next()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment