In Python, if I have a child function within a parent function, is the child function "initialised" (created) every time the parent function is called? Is there any overhead associated with nesting a function within another?
|
Yes, a new object would be created each time. It's likely not an issue unless you have it in a tight loop. Profiling will tell you if it's a problem.
|
|||||||||||||
|
|
The code object is pre-compiled so that part has no overhead. The function object gets built on every invocation -- it binds the function name to the code object, records default variables, etc. Executive summary: It's not free.
|
|||
|
|
|
There is an impact, but in most situations it is so small that you shouldn't worry about it - most non-trivial applications probably already have performance bottlenecks whose impacts are several orders of magnitude larger than this one. Worry instead about the readability and reusability of the code. Here some code that compares the performance of redefining a function each time through a loop to reusing a predefined function instead.
When I run this in Python 2.7 on my Macbook Air running OS X Lion I get:
|
|||
|
|
