magicmethods
magicmethods copied to clipboard
__next__
In Python 3, next(obj)
calls obj.__next__
(py3)
https://docs.python.org/3/library/stdtypes.html#iterator.next
How come __next__
was not included in the list under the containers
category or a different category?