hasattr([1,2,3,3], '__iter__') == False
-
Pycom MicroPython 0.1.0.12...
>>> hasattr([1,2,3,3], '__iter__') False >>> hasattr(dict(), '__iter__') False
Is this a bug, or documented somewhere? I know I've read somewhere about missing magic methods in MicroPython, but I didn't see it here.. https://docs.micropython.org/en/latest/genrst/index.html
Is there a document summarizing these interface differences in Pycom Micropython?
Cheers,
bitrat