Where is quote (again)?

Remco Gerlich scarblac at pino.selwerd.nl
Fri Mar 8 20:45:47 EST 2002


N Becker <nbecker at fred.net> wrote in comp.lang.python:
> def g():
>   f()

This is the effectively same as 

g=f

...and therefore probably not what you meant.

Try to explain what you need.

Remember that the you can pass the function object around without calling
it, by just passing its name (f) around, without the ().

-- 
Remco Gerlich



More information about the Python-list mailing list