From b2e647d5983c70cc2bf470fa9e0528a059001743 Mon Sep 17 00:00:00 2001 From: jerluc Date: Tue, 16 Nov 2021 16:12:43 -0800 Subject: [PATCH] Removing invalid test for `async with open(...)` See explanation in https://github.com/davidhalter/jedi/pull/1819#issuecomment-970776091 --- test/completion/async_.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/test/completion/async_.py b/test/completion/async_.py index fa59ed3c..86c5d71a 100644 --- a/test/completion/async_.py +++ b/test/completion/async_.py @@ -26,11 +26,6 @@ async def y(): x().__await__().__next return 2 -async def x2(): - async with open('asdf') as f: - #? ['readlines'] - f.readlines - class A(): @staticmethod async def b(c=1, d=2):