"linda.s" <[EMAIL PROTECTED]> wrote
> How can I know where a function such as abc is from (from which
> module)?
abc
>
Look at your import statements.
Provided you have nbeen using recommended practice
you will have used
from module import name1,name2,...
or just
import module.
If th
linda.s wrote:
> How can I know where a function such as abc is from (from which module)?
>
abc
>
>
You could:
1. look it up in the index of the library reference
(http://www.python.org/doc/current/lib/genindex.html),
2. try "pydoc",
3. examine abc.__modul
How can I know where a function such as abc is from (from which module)?
>>> abc
___
Tutor maillist - Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor