So AFAIK in CPython, function definitions are compiled into function objects when executed at parse time. But what about inner functions? Do they get compiled into function objects at parse time or do they get compiled (or interpreted) every single time the function is called? Do inner functions incur any performance penalty at all?
|
To give a general explaination - assuming you have the following code in a module:
When the file is parsed by python via When the module actually loads, by evaluating the code object associated with the module, one thing which happens is an actual "function object" is created for None of this involved |
|||||
|
I suspect this is heavily implementation dependent, but that was CPython 2.6.6, and the inner function looks like it was compiled. Here's another example:
So we can conclude that they are compiled. As for their performance characteristics, use them. If you start having performance issues, profile. I know it's not really an answer, but it almost never matters and when it does, general answers don't cut it. Function calls incur some overhead and it looks like inner functions are just like functions. |
|||
|
|
|
Easy test: the default arguments to a function are called once, at define time.
So yes: this is a minor (very very! minor) performance hit. |
|||
|
|
|
To extend nmichaels answer inner function are compiled in compile time as he guessed and there byte code is saved in the Example:
|
||||
|
|
timeitmodule would be a great way to test it. – g.d.d.c May 16 '11 at 16:49