2007-01-24 22:24:01 +08:00
|
|
|
|
|
|
|
* use "inherited" doc strings, i.e. for
|
|
|
|
class A:
|
|
|
|
def meth(self):
|
|
|
|
"doc1"
|
|
|
|
class B(A):
|
|
|
|
def meth(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
B.meth should display the A.meth docstring, probably
|
|
|
|
with special formatting (italics or so).
|
|
|
|
|
2007-02-04 23:47:33 +08:00
|
|
|
NOT YET DONE (later?)
|
|
|
|
|
2007-02-10 22:22:16 +08:00
|
|
|
* add warning about py.test possibly not covering the whole API
|
2007-01-30 21:24:27 +08:00
|
|
|
|