]> granicus.if.org Git - python/commit
SF bug 542984.
authorGuido van Rossum <guido@python.org>
Thu, 18 Apr 2002 00:22:00 +0000 (00:22 +0000)
committerGuido van Rossum <guido@python.org>
Thu, 18 Apr 2002 00:22:00 +0000 (00:22 +0000)
commit6ca7d41c1f0f2f6ef654f3ff6241c80cccf06ab3
treeafd1673b0face9658322fa096ed28941cd03693e
parenta90a3b471de133df411e947d8a498e7965f6d800
SF bug 542984.

Change type_get_doc (the get function for __doc__) to look in tp_dict
more often, and if it finds a descriptor in tp_dict, to call it (with
a NULL instance).  This means you can add a __doc__ descriptor to a
new-style class that returns instance docs when called on an instance,
and class docs when called on a class -- or the same docs in either
case, but lazily computed.

I'll also check this into the 2.2 maintenance branch.
Objects/typeobject.c