Returns the code object representing the compiled function body.
function.func_code
#TODO
#TODO
The func_code attribute is writeable.
>>> def func(): pass
...
>>> c = foo.func_code
>>> c
<code object func at 00D9D188, file "<interactive input>", line 1>#TODO