On Sat, 28 May 2011 09:39:08 -0700, John Nagle wrote: > Python allows patching code while the code is executing.
Can you give an example of what you mean by this?
If I have a function:
def f(a, b):
c = a + b
d = c*3
return "hello world"*d
how would I patch this function while it is executing?
--
Steven
--
http://mail.python.org/mailman/listinfo/python-list
