Re: How to exclude imports from PyDoc

2009-08-28 Thread Matt Bellis
Hi Diez, Thanks for the heads up. I'll give epydoc a shot. Matt    Anyone know the best way to getPyDocto ignore this (or other) imported module(s)? Don't know aboutpydoc, but epydoc (which generates much nicer docs imho) can be forced to only include certain packages. Diez --

How to exclude imports from PyDoc

2009-08-26 Thread Matt Bellis
Hi all, I tried PyDoc today for documentation for a small project on which I'm working. I have a class, foo, in foo.py. However, at the beginning of the file I from math import *. When I use PyDoc, it's pulling in all the math functions ---snip--- . . . FUNCTIONS acos(...)

Re: How to exclude imports from PyDoc

2009-08-26 Thread Diez B. Roggisch
Matt Bellis schrieb: Hi all, I tried PyDoc today for documentation for a small project on which I'm working. I have a class, foo, in foo.py. However, at the beginning of the file I from math import *. When I use PyDoc, it's pulling in all the math functions ---snip--- . . . FUNCTIONS