Re: question with inspect module

2007-02-20 Thread Gabriel Genellina
En Tue, 20 Feb 2007 16:04:33 -0300, Tool69 <[EMAIL PROTECTED]> escribió: > I would like to retrieve all the classes, methods and functions of a > module. > I've used the inspect module for this, but inside a given class > (subclass of some other one), I wanted to retrieve only the methods > I've

Re: question with inspect module

2007-02-20 Thread Tool69
Thanks Miki, that's exactly what I need :) -- http://mail.python.org/mailman/listinfo/python-list

Re: question with inspect module

2007-02-20 Thread Miki
Hello, > I would like to retrieve all the classes, methods and functions of a > module. > I've used the inspect module for this, but inside a given class > (subclass of some other one), I wanted to retrieve only the methods > I've written, not the inherited one. How can I do ? class A: def a_

question with inspect module

2007-02-20 Thread Tool69
Hi, I would like to retrieve all the classes, methods and functions of a module. I've used the inspect module for this, but inside a given class (subclass of some other one), I wanted to retrieve only the methods I've written, not the inherited one. How can I do ? Thanks. -- http://mail.python.