It is possible (though normally not a good idea) to create a class that stores its member definitions in globals() or another dictionary:
oddclass = type("oddclass", (object,), globals())
Is there a way to do the same with a function, so that all its local variables are stored in the global (or module) namespace, rather than its own?
I can get the same effect one variable at a time, by declaring variables global:
def myfunction():
global x
x = 10
What I'm looking for is a general way to achieve the same effect for all the internal variables of myfunction (also for those not yet declared at the top), ideally some sort of one-liner that can easily be added and then removed when it's no longer needed.
PS. I'm asking this question because I'm curious about the way python manages function namespaces. My motivation is to use this as a temporary debugging aid in certain circumstances (a function with a lot of local data that fails mysteriously), but never mind that: I can live with using global as above. This question is about python function internals.
xfrom one function interfering with another. – r3m0t Oct 20 '12 at 23:43