Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 405963
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T17:27:00+00:00 2026-05-12T17:27:00+00:00

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

  • 0

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?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T17:27:01+00:00Added an answer on May 12, 2026 at 5:27 pm

    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
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 210k
  • Answers 210k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer I was able to do this with the following code,… May 12, 2026 at 10:01 pm
  • Editorial Team
    Editorial Team added an answer Try this: string line = " John Doe Villa Grazia… May 12, 2026 at 10:01 pm
  • Editorial Team
    Editorial Team added an answer Or should I just serve up "application/json" like most APIs… May 12, 2026 at 10:01 pm

Related Questions

jCarousel documentation states the following: By passing the callback function itemLoadCallback as configuration option,
I have a class that represents credit card details. To represent valid from and
A coworker used a for loop to iterate a List in some C# code
Possible Duplicate: String vs StringBuilder I just revisited some of the books that I

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.