In Python 3.4, I would like to call a child function, defined outside the parent function, that still has access to the parent function\'s scope (see example below). While I ha
You can define a function attribute like parent.test = 0 outside the function and access it in the child function using parent.test