* Matthew King <[email protected]> [2011-03-23 11:35]:
> ... yes, the rest of the function looks like bollocks too.
> Comment the whole thing out. Put in a print line because you
> probably can't have empty functions in python.

The magic incantation you want is `pass`:

    pass is a null operation -- when it is executed, nothing
    happens. It is useful as a placeholder when a statement is
    required syntactically, but no code needs to be executed
           --- http://docs.python.org/release/2.5.2/ref/pass.html

This is what happens when a language designer fails to heed
Aristotle, and provides syntax for where a plot begins but none
for where it ends.

Regards,
-- 
Aristotle Pagaltzis // <http://plasmasturm.org/>

Reply via email to