Stef Mientki <[EMAIL PROTECTED]> wrote in news:57668 [EMAIL PROTECTED]:
> If I call a parameterless function without brackets at the end, > the function is not performed, but ... > I don't get an error message ??? > > Is this normal behavior ? > Yes, it's normal, but you did not in fact call the function, if you were using Python. Functions are objects that, for example, can be passed to other functions. The way to refer to the functions themselves is to omit the arguments and parentheses. So by simply stating the name of a function, that's all you've done. -- rzed -- http://mail.python.org/mailman/listinfo/python-list