Fix __enter__ Self resolving

This commit is contained in:
Dave Halter
2026-04-29 18:15:57 +02:00
parent 3375d48f8c
commit 0d79865a0f
2 changed files with 3 additions and 2 deletions
+2 -1
View File
@@ -388,7 +388,8 @@ with open('') as f:
#? ['closed']
f.closed
for line in f:
#? str() bytes()
# TODO this is wrong
#? bytes()
line
with open('') as f1, open('') as f2: