Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

If I have a script like:

class ClassA(object):
    ...
    def methodA(...):
        varA=...

        def funcA(...):
            ...

        varA=funA(...)

I mean I intend to write a small function inside a class method, which is only used inside this class method. Is this code style OK? I think it's a little ugly. Is there alternate?

share|improve this question
1  
One potential problem is that you'll be re-defining funcA every time methodA is called. – Blender Dec 21 '12 at 6:55
Have you considered using a lambda function instead? – Martinsh Shaiters Dec 21 '12 at 6:56
@Blender then how can I avoid re-defining funcA? – ThunderEX Dec 21 '12 at 6:59
@ThunderEX: By defining it outside of methodA. – Blender Dec 21 '12 at 7:00
1  
See this question from just an hour ago for some discussion. – BrenBarn Dec 21 '12 at 7:19
show 6 more comments

1 Answer

up vote 1 down vote accepted

Beauty is in the eye of the beholder.

It is totally fine having a very "local" function nested inside another function - especially from the point of readability of code.

Others will argue with coding style and best practice.

It is your code and you must feel fine with your code in order to understand and read it later.

So if it is fine for you and your understanding of "nice" code, go ahead.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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