Removing invalid test for async with open(...)

See explanation in https://github.com/davidhalter/jedi/pull/1819#issuecomment-970776091
This commit is contained in:
jerluc
2021-11-16 16:12:43 -08:00
parent 8847848a03
commit b2e647d598

View File

@@ -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):