Re: [Tutor] where is the function from

2007-10-25 Thread Alan Gauld
"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

Re: [Tutor] where is the function from

2007-10-24 Thread Eric Brunson
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

[Tutor] where is the function from

2007-10-24 Thread linda.s
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