"David" wrote:

> I am writing a big (for me) program and it would be helpful to have a dummy
> function like this:
>
> def function_A_subfunction_B(self, ....)
>     dummy()
>
> that display a standard message like this:
>
> "Dummy: 'function_A_subfunction_B' in module 'module' is not defined yet"

that's spelled

    def function_A_subfunction_B(self, ....)
        raise NotImplementedError

in Python.

</F> 



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

Reply via email to