summaryrefslogtreecommitdiff
path: root/giscanner/annotationparser.py
diff options
context:
space:
mode:
authorDieter Verfaillie <dieterv@optionexplicit.be>2013-06-17 17:05:11 +0200
committerDieter Verfaillie <dieterv@optionexplicit.be>2013-10-08 20:55:36 +0200
commit5469415be4c237d7ea0125d214b7e73c441954f2 (patch)
tree71073e0c4bc06da7efbadab7cc6f2f38c39b8107 /giscanner/annotationparser.py
parenta42b38d54ff3539fd8e1f312c815744856a5c0b5 (diff)
downloadgobject-introspection-5469415be4c237d7ea0125d214b7e73c441954f2.tar.gz
giscanner: remove unused GtkDocCommentBlock.value
Diffstat (limited to 'giscanner/annotationparser.py')
-rw-r--r--giscanner/annotationparser.py3
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):