Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6177997
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T00:23:38+00:00 2026-05-24T00:23:38+00:00

Does anyone know how send() works with generators when used recursively? I expected the

  • 0

Does anyone know how send() works with generators when used recursively? I expected the value to be passed to the current generator, which could then pass it down to the recursed-generator…but it seems that is not the case? Some example code:

def Walk(obj):
  recurse = (yield obj)
  if not recurse:
    print 'stop recurse:', recurse
    return

  if isinstance(obj, list):
    print 'is list:', obj
    for item in obj:
      print 'item loop:', item
      walker = Walk(item)
      for x in walker:
        print 'item walk:', x
        recurse = (yield x)
        print 'item walk recurse:', recurse
        walker.send(recurse)

root = ['a', ['b.0', ['b.0.0']]]

walker = Walk(root)
for i, x in enumerate(walker):
  print i, x
  print 'send true'
  walker.send(True)

The desired output is should be each value at each level recursion:

0 ['a', ['b.0', ['b.0.0']]]
1 'a'
2 ['b.0', ['b.0.0']]
3 'b.0'
4 ['b.0.0']
5 'b.0.0'

What ends up happening is:

0 ['a', ['b.0', ['b.0.0']]]
send true
is list: ['a', ['b.0', ['b.0.0']]]
item loop: a
item walk: a
item walk recurse: None
stop recurse: None

It looks like the inner-loop with recurse = (yield) doesn’t wait for a value to be sent. Or something. Its not really clear how the inner-loop recurse value is getting None; its caller does call send().

Ultimately, the goal is basically to walk over a tree-structure recursively, but have the top-most caller be able to specify when not to recurse into a substructure. e.g.,

walker = Walk(root)
for node in walker:
  if CriteriaMet(node):
    walker.send(True)
  else:
    walker.send(False)
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T00:23:38+00:00Added an answer on May 24, 2026 at 12:23 am

    The important thing to realize is that send() also consumes!
    From http://docs.python.org/reference/expressions.html#generator.send:

    Resumes the execution and “sends” a value into the generator function.
    The value argument becomes the result of the current yield expression.
    The send() method returns the next value yielded by the generator, or
    raises StopIteration if the generator exits without yielding another
    value. When send() is called to start the generator, it must be called
    with None as the argument, because there is no yield expression that
    could receive the value.

    Here is a quick re-working of your code to get it to output as expected:

    def Walk(obj):
      recurse = (yield obj)
      if not recurse:
        #print 'stop recurse:', recurse
        return
    
      if isinstance(obj, list):
        #print 'is list:', obj
        for item in obj:
          #print 'item loop:', item
          walker = Walk(item)
    
          recurse = None #first send must be None
          while True:
            try:
              x = walker.send(recurse)
            except StopIteration:
              break
            #print 'item walk:', x
            recurse = (yield x)
            #print 'item walk recurse:', recurse
    
    root = ['a', ['b.0', ['b.0.0']]]
    
    walker = Walk(root)
    i = 0
    x = walker.next()
    while True:
      print i, x
      try:
        x = walker.send(True)
      except StopIteration:
        break
      i += 1
    

    Output:

    0 ['a', ['b.0', ['b.0.0']]]
    1 a
    2 ['b.0', ['b.0.0']]
    3 b.0
    4 ['b.0.0']
    5 b.0.0
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Does anyone know if views states (used in Silverlight) will be available in next
Does anyone know a Library which provides a Thread.sleep() for Java which has an
Does anyone know if its possible to send out custom http REQUEST headers in
Does anyone know how to change icons in Silverlight outofbrowser application?
Does anyone know how to add an item to a list but do it
Does anyone know of a "similar words or keywords" algorithm available in open source
Does anyone know of an equivalent to FxCop/StyleCop for Delphi? I would really like
Does anyone know of any (free) tools that will convert an old Delhi 5
Does anyone know how I can go about hiding the tab selectors for the
Does anyone know how to get the operating system information from a microsoft sql

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.