Sha256: ad5345c91f345fdd77b70226528750c5fc3289aee7c75db58ac8255d8b6699d7
Contents?: true
Size: 338 Bytes
Versions: 104
Compression:
Stored size: 338 Bytes
Contents
## Hints To support `list()`, see [implementing an iterator for a class.](https://docs.python.org/3/tutorial/classes.html#iterators) Additionally, note that Python2's `next()` has been replaced by `__next__()` in Python3. For dual compatibility, `next()` can be implemented as: ```Python def next(self): return self.__next__() ```
Version data entries
104 entries across 104 versions & 1 rubygems