Juan Pablo Romero Méndez wrote:

> Suppose this function is given:
> 
> def f(x,y):
>   return x+y+k
> 
> 
> Is it possible to somehow assign a value to k without resorting to
> making k global?

You can replace the function's global dictionary:

>>> def f(x, y):
...     return x+y+k
...
>>> function = type(f)
>>> function(f.func_code, dict(k=1))(2, 3)
6
>>> k
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
NameError: name 'k' is not defined

This is a hack, of course.

Peter
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to