3 lines
47 B
Python
3 lines
47 B
Python
|
|
def anext(aiter):
|
||
|
|
return aiter.__anext__()
|