[ python-Bugs-1683288 ] xreload.py won't update class docstrings

SourceForge.net noreply at sourceforge.net
Mon Mar 19 10:12:56 CET 2007


Bugs item #1683288, was opened at 2007-03-18 22:48
Message generated for change (Settings changed) made by gbrandl
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1683288&group_id=5470

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: Python Library
Group: Python 3000
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Jim Jewett (jimjjewett)
>Assigned to: Guido van Rossum (gvanrossum)
Summary: xreload.py won't update class docstrings

Initial Comment:
"""
def _update_class(oldclass, newclass):
    ...
    for name in oldnames & newnames - {"__dict__", "__doc__"}:
        setattr(oldclass, name,  _update(olddict[name], newdict[name]))
    return oldclass
"""

I assume __doc__ is skipped because a string can't be updated in place.  But since oldclass is returned, __doc__ should still be replaced with the updated documentation.


----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1683288&group_id=5470


More information about the Python-bugs-list mailing list