fork download
  1.  
  2. class Test(object):
  3. def __iter__(self):
  4. return [] # wrong
  5.  
  6. import collections
  7. print isinstance(Test(), collections.Iterable)
  8.  
Success #stdin #stdout 0.01s 9120KB
stdin
Standard input is empty
stdout
True