picop.cyiterator#
Iterator protocol helpers.
- picop.cyiterator.iter_check(o)#
Return True if
osupports the iterator protocol (PyIter_Check). :type o:object:param o:- Return type:
- picop.cyiterator.iter_eq(a, b)#
Return True if
a is b(iterator identity; typical CPythonobject.__eq__). :type a:object:param a: :type b:object:param b:- Return type:
- picop.cyiterator.iter_next(o)#