Closed tomdz closed 6 years ago
This fixes __getattr__ to adhere to its contract as per Python API, and wraps range in a list() since in Python 3 it no longer returns a list itself.
__getattr__
range
list()
This fixes
__getattr__
to adhere to its contract as per Python API, and wrapsrange
in alist()
since in Python 3 it no longer returns a list itself.