Given a function within a function, how do I call the inner function from an external function?
ex.
def a():
print 'a'
def b():
print 'b'
def c():
print 'c'
def d():
# how would I now call a, b and c from here?
def e():
# how would I call a, b and c from here as well?
Yes I know it's horrible code structure and should not be done - but how do you do it?
Edit: Any way to do this using decorators?
classinstead ofdef. What on earth can your use case be?