Re: [Numpy-discussion] Sphinx/Numpydoc, attributes and property

2009-10-22 Thread Fabricio Silva
It seems that class Profil(object): def __init__(self): """ """ pass def bla(self): "Blabla." return 0 @property def tdeb(self): "The time horizon startpoint." return self.pts[0,:].min() > and a foo.rst conta

[Numpy-discussion] Sphinx/Numpydoc, attributes and property

2009-10-22 Thread Fabricio Silva
It seems that either Sphinx or NumpyDoc is having troubles with property attributes. Considering the following piece of code in foo.py class Profil(object): """ Blabla Attributes -- tfin tdeb : flo