#!/www/python/bin/python
"""$URL: svn+ssh://svn/repos/trunk/dulcinea/bin/mydoc $
$Id: mydoc 21277 2003-04-03 17:51:02Z dbinger $

This is a version of pydoc that works with classes that inherit from Persistent.
"""
import ZODB
from Persistence import Persistent
for attr in dir(Persistent):
    try:
        getattr(Persistent, attr)
    except AttributeError:
        setattr(Persistent, attr, 'broken attribute')

import pydoc
pydoc.cli()


