summaryrefslogtreecommitdiff
path: root/giscanner/ast.py
diff options
context:
space:
mode:
authorDieter Verfaillie <dieterv@optionexplicit.be>2013-08-12 07:10:08 +0200
committerDieter Verfaillie <dieterv@optionexplicit.be>2013-10-08 20:56:57 +0200
commit2f8d00d6474cc946f5f346eaa832eaf0f09a6f0a (patch)
tree81fbc4ddc6002532e503cf4b60bf5e6fbd954ee6 /giscanner/ast.py
parent700b8e41bb861fe8d8d3114c45cd8547d424c645 (diff)
downloadgobject-introspection-2f8d00d6474cc946f5f346eaa832eaf0f09a6f0a.tar.gz
giscanner: make Annotated.attributes an OrderedDict
annotationparser.py already stores attributes in a mapping so it makes little sense using a list of tuples (suggesting multiple duplicate keys would be allowed) on the ast side.
Diffstat (limited to 'giscanner/ast.py')
-rw-r--r--giscanner/ast.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/giscanner/ast.py b/giscanner/ast.py
index becc1266..a30a6a72 100644
--- a/giscanner/ast.py
+++ b/giscanner/ast.py
@@ -516,7 +516,7 @@ properties."""
self.version_doc = None
self.skip = False
self.introspectable = True
- self.attributes = [] # (key, value)*
+ self.attributes = OrderedDict()
self.stability = None
self.stability_doc = None
self.deprecated = None