Documenting class attribute

Posted by Dewfy on Stack Overflow See other posts from Stack Overflow or by Dewfy
Published on 2009-08-28T15:00:53Z Indexed on 2010/04/09 13:03 UTC
Read the original article Hit count: 138

Following sample is taken from "Dive into python" book.

class MP3FileInfo(FileInfo):
    "store ID3v1.0 MP3 tags"
    tagDataMap = ...

This sample shows documenting the MP3FileInfo, but how can I add help to MP3FileInfo. tagDataMap

© Stack Overflow or respective owner

Related posts about python

Related posts about self-documenting