Tagged Questions
8
votes
3answers
477 views
Adding docstrings to namedtuples in Python?
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 ...