extending python: which python code calls the c iterator methods?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Johannes Zellner

    #1

    extending python: which python code calls the c iterator methods?

    Hello,

    when extending python there are type methods tp_iter and tp_iternext.
    Which python code calls the c iterator methods?

    --
    Johannes
  • Fredrik Lundh

    #2
    Re: extending python: which python code calls the c iterator methods?

    Johannes Zellner wrote:
    [color=blue]
    > when extending python there are type methods tp_iter and tp_iternext.
    > Which python code calls the c iterator methods?[/color]

    iter(obj), for-in obj, etc.

    </F>



    Comment

    Working...