From: Dieter Verfaillie Date: Fri, 29 Jun 2012 14:57:54 +0000 (+0200) Subject: giscanner: make it clear DocOptions() also has a position attribute X-Git-Tag: GOBJECT_INTROSPECTION_1_35_3~27 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bfc8b8d40ddb4093ff7f6e516eb4088c52136db2;p=platform%2Fupstream%2Fgobject-introspection.git giscanner: make it clear DocOptions() also has a position attribute Lost a couple of hours hunting down a failed test case (from the annotationparser work about to land) due to this not being clear... https://bugzilla.gnome.org/show_bug.cgi?id=688897 --- diff --git a/giscanner/annotationparser.py b/giscanner/annotationparser.py index c405ef4..28db1a3 100644 --- a/giscanner/annotationparser.py +++ b/giscanner/annotationparser.py @@ -398,6 +398,7 @@ class DocTag(object): class DocOptions(object): def __init__(self): self.values = [] + self.position = None def __repr__(self): return '' % (self.values, )