diff options
author | Dieter Verfaillie <dieterv@optionexplicit.be> | 2013-06-17 17:05:11 +0200 |
---|---|---|
committer | Dieter Verfaillie <dieterv@optionexplicit.be> | 2013-10-08 20:55:36 +0200 |
commit | 5469415be4c237d7ea0125d214b7e73c441954f2 (patch) | |
tree | 71073e0c4bc06da7efbadab7cc6f2f38c39b8107 /giscanner/annotationparser.py | |
parent | a42b38d54ff3539fd8e1f312c815744856a5c0b5 (diff) | |
download | gobject-introspection-5469415be4c237d7ea0125d214b7e73c441954f2.tar.gz |
giscanner: remove unused GtkDocCommentBlock.value
Diffstat (limited to 'giscanner/annotationparser.py')
-rw-r--r-- | giscanner/annotationparser.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/giscanner/annotationparser.py b/giscanner/annotationparser.py index a6a6a945..b8953ed3 100644 --- a/giscanner/annotationparser.py +++ b/giscanner/annotationparser.py @@ -722,7 +722,7 @@ class GtkDocCommentBlock(object): Represents a GTK-Doc comment block. ''' - __slots__ = ('name', 'annotations', 'value', 'tags', 'description', 'params', 'position') + __slots__ = ('name', 'annotations', 'tags', 'description', 'params', 'position') def __init__(self, name): #: Identifier name. @@ -740,7 +740,6 @@ class GtkDocCommentBlock(object): self.tags = OrderedDict() self.annotations = GtkDocAnnotations() - self.value = None self.position = None def __cmp__(self, other): |