From 4bbdbe38948eb79b193c9624f5ee2ef12dbebf8e Mon Sep 17 00:00:00 2001 From: rocky Date: Thu, 10 Sep 2020 17:19:13 -0400 Subject: [PATCH] Remove bogus async_with rule --- uncompyle6/parsers/parse35.py | 1 - 1 file changed, 1 deletion(-) diff --git a/uncompyle6/parsers/parse35.py b/uncompyle6/parsers/parse35.py index 5de7c6c4..eef26fe2 100644 --- a/uncompyle6/parsers/parse35.py +++ b/uncompyle6/parsers/parse35.py @@ -171,7 +171,6 @@ class Python35Parser(Python34Parser): elif opname == 'BEFORE_ASYNC_WITH' and self.version < 3.8: # Some Python 3.5+ async additions rules_str = """ - async_with_stmt ::= expr stmt ::= async_with_stmt async_with_pre ::= BEFORE_ASYNC_WITH GET_AWAITABLE LOAD_CONST YIELD_FROM SETUP_ASYNC_WITH async_with_post ::= COME_FROM_ASYNC_WITH