Matt> In some instances I want to access just the function f, though,
Matt> and catch the values before they've been decorated.
def f(x):
return x * x
@as_string
def fs(x):
return f(x)
Call the one you want.
Skip
--
http://mail.python.org/mailman/listinfo/python-list
