File: Synopsis/DocString.py
 1#
 2# Copyright (C) 2006 Stefan Seefeld
 3# All rights reserved.
 4# Licensed to the public under the terms of the GNU LGPL (>= 2),
 5# see the file COPYING for details.
 6#
 7
 8class DocString:
 9    """A doc-string for ASG nodes."""
10
11    def __init__(self, text, markup):
12
13        self.text = text
14        self.markup = markup
15
16