Is it possible to add a documentation string to a namedtuple in an easy manner?

I tried

from collections import namedtuple

Point = namedtuple("Point", ["x", "y"])
"""
A point in 2D space
"""

# Yet another test

"""
A(nother) point in 2D space
"""
Point2 = namedtuple("Point2", ["x", "y"])

print Point.__doc__ # -> "Point(x, y)"
print Point2.__doc__ # -> "Point2(x, y)"

but that doesn't cut it. Is it possible to do in some other way?

Thank you, Rickard

link|improve this question

How would you like it to work? – gnibbler Oct 22 '09 at 11:00
I'd like it work like this "dirty" workaround I tried: class Point(namedtuple("Point", ["x", "Y"])): """ hello! """ pass print Point.__doc__ #-> "hello!" but it feels ugly to wrap it in this class statement. – Rickard Oct 22 '09 at 11:03
feedback

3 Answers

up vote 14 down vote accepted

You can achieve this by creating a simple, empty wrapper class around the returned value from namedtuple. Contents of a file I created (nt.py):

from collections import namedtuple

Point_ = namedtuple("Point", ["x", "y"])

class Point(Point_):
    """ A point in 2d space """
    pass

Then in the Python REPL:

>>> print nt.Point.__doc__
 A point in 2d space

Or you could do:

>>> help(nt.Point)  # which outputs...
Help on class Point in module nt:

class Point(Point)
 |  A point in 2d space
 |  
 |  Method resolution order:
 |      Point
 |      Point
 |      __builtin__.tuple
 |      __builtin__.object
 ...

If you don't like doing that by hand every time, it's trivial to write a sort-of factory function to do this:

def NamedTupleWithDocstring(docstring, *ntargs):
    nt = namedtuple(*ntargs)
    class NT(nt):
        __doc__ = docstring
    return NT

Point3D = NamedTupleWithDocstring("A point in 3d space", "Point3d", ["x", "y", "z"])

p3 = Point3D(1,2,3)

print p3.__doc__

which outputs:

A point in 3d space
link|improve this answer
1  
This is how I add custom methods/docstrings to namedtuple. – Sridhar Ratnakumar Oct 22 '09 at 11:05
Thank you. I also tried this and I guess I'll use this workaround. Are there any performance penalties to wrap the tuple in a new custom class in this manner? – Rickard Oct 22 '09 at 11:08
I'm guessing that adding the slots = () to the class definition (as per the documentation for namedtuples) gives the wrapping a negligble performance impact. – Rickard Oct 22 '09 at 11:24
Either of the near-empty class or adding __slots__ should have a negligible performance impact in any "normal" usage. – Mark Rushakoff Oct 22 '09 at 11:31
feedback

No, you can only add doc strings to modules, classes and function (including methods)

link|improve this answer
1  
… yes, and collections.namedtuple returns an object (of type type). – EOL Oct 22 '09 at 12:16
feedback

You could concoct your own version of the namedtuple factory function by Raymond Hettinger and add an optional docstring argument.  However it would be easier -- and arguably better -- to just define your own factory function using the same basic technique as in the recipe.  Either way, you'll end up with something reusable.

from collections import namedtuple

def my_namedtuple(typename, field_names, verbose=False,
                 rename=False, docstring=''):
    '''Returns a new subclass of namedtuple with the supplied
       docstring appended to the default one.

    >>> Point = my_namedtuple('Point', 'x, y', docstring='A point in 2D space')
    >>> print Point.__doc__
    Point(x, y):  A point in 2D space
    '''
    # create a base class and concatenate its docstring and the one passed
    _base = namedtuple(typename, field_names, verbose, rename)
    _docstring = ''.join([_base.__doc__, ':  ', docstring])

    # fill in template to create a no-op subclass with the combined docstring
    template = '''class subclass(_base):
        %(_docstring)r
        pass\n''' % locals()

    # execute code string in a temporary namespace
    namespace = dict(_base=_base, _docstring=_docstring)
    try:
        exec template in namespace
    except SyntaxError, e:
        raise SyntaxError(e.message + ':\n' + template)

    return namespace['subclass']  # subclass object created
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.