picop.cyiterobject#

Iterator object constructors.

picop.cyiterobject.calliter_check(op)#

Return True if op is a callable iterator (PyCallIter_Check). :type op: object :param op:

Return type:

bool

picop.cyiterobject.calliter_new(callable, sentinel)#
picop.cyiterobject.seqiter_check(op)#

Return True if op is a sequence iterator (PySeqIter_Check). :type op: object :param op:

Return type:

bool

picop.cyiterobject.seqiter_new(seq)#