We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a233064 commit 9c978c2Copy full SHA for 9c978c2
Lib/test/test_capi/test_opt.py
@@ -3203,15 +3203,15 @@ class AsyncIter:
3203
def __init__(self):
3204
self.limit = 0
3205
self.count = 0
3206
-
+
3207
def __aiter__(self):
3208
return self
3209
3210
async def __anext__(self):
3211
if self.count >= self.limit:
3212
...
3213
self.count += 1j
3214
3215
class AsyncCtx:
3216
async def async_for_driver():
3217
try:
@@ -3223,7 +3223,7 @@ async def async_for_driver():
3223
3224
except Exception:
3225
3226
3227
c = async_for_driver()
3228
while True:
3229
0 commit comments