vote up 1 vote down star

there is a check I need to perform after each subsequent step in a function, so I wanted to define that step as a function within a function.

|>>> def gs(a,b):
|...  def ry():
|...   if a==b:
|...    return a
|...  ry()
|... 
|>>> gs(1,2)
|>>> gs(1,1)
|>>>

so how do I get gs to return 'a' from within ry? I thought of using super but think that's only for classes.

Thanks

There's been a little confusion... I only want to return a if a==b. if a!=b, then I don't want gs to return anything yet.

edit: I now think decorators might be the best solution.

flag

5 Answers

vote up 1 vote down check

This should allow you to keep checking the state and return from the outer function if a and b ever end up the same:

def gs(a,b):
    class SameEvent(Exception):
        pass
    def ry():
        if a==b:
            raise SameEvent(a)
    try:
        # Do stuff here, and call ry whenever you want to return if they are the same.
        ry()

        # It will now return 3.
        a = b = 3
        ry()

    except SameEvent as e:
        return e.args[0]
link|flag
it's a little hackish, but I like it! very clever :) – Jim Robert Feb 19 at 14:04
vote up 9 vote down

Do you mean?

def gs(a,b):
    def ry():
        if a==b:
            return a
    return ry()
link|flag
vote up 1 vote down

you return ry() explicitly instead of just calling it.

link|flag
vote up 2 vote down

There's been a little confusion... I only want to return a if a==b. if a!=b, then I don't want gs to return anything yet.

Check for that then:

def gs(a,b):
    def ry():
        if a==b:
            return a
    ret = ry()
    if ret: return ret
    # do other stuff
link|flag
vote up 2 vote down

As you mention "steps" in a function, it almost seems like you want a generator:

def gs(a,b):
  def ry():
    if a==b:
      yield a
  # If a != b, ry does not "generate" any output
  for i in ry():
    yield i
  # Continue doing stuff...
  yield 'some other value'
  # Do more stuff.
  yield 'yet another value'

(Generators can now also act as coroutines, since Python 2.5, using the new yield syntax.)

link|flag
this isn't really the answer to my question, BUT it does solve the problem I was trying to achieve :) – Jim Robert Jan 14 at 3:06
@All: You could use the yield only in the inner function if you want the outer function to remain a normal function, and not have to iterate over the result. – Mike Boers Feb 18 at 20:36

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.