[Epydoc-devel] abstract functions
Brought to you by:
edloper
From: Paul P. <pog...@gm...> - 2007-01-03 22:46:34
|
Hi, How could I document such code? class AbstractFoo (object): def bar (self): # Not implemented. raise NotImplementedError I would like something as standing out as "class method" in bar() documentation, so that users really know they _must_ implement it in a subclass for it to work. Paul |