vote up 1 vote down star

Hello,

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

flag

How would you like it to work? – gnibbler Oct 22 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 at 11:03

2 Answers

vote up 4 vote down check

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|flag
This is how I add custom methods/docstrings to namedtuple. – Sridhar Ratnakumar Oct 22 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 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 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 at 11:31
vote up 3 vote down

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

link|flag
… yes, and collections.namedtuple returns an object (of type type). – EOL Oct 22 at 12:16

Your Answer

Get an OpenID
or

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