summaryrefslogtreecommitdiff
path: root/giscanner/collections/__init__.py
diff options
context:
space:
mode:
authorDieter Verfaillie <dieterv@optionexplicit.be>2013-04-25 17:28:55 +0200
committerDieter Verfaillie <dieterv@optionexplicit.be>2013-05-07 15:36:09 +0200
commite7e1ba84f31759cec59460be93bcbd01f1add62a (patch)
treea6b564a5c1d2e4635d507d69b2c31db243f072fa /giscanner/collections/__init__.py
parentbb482abafe4bc6d88cbbc4abc36967a3012e9f50 (diff)
downloadgobject-introspection-e7e1ba84f31759cec59460be93bcbd01f1add62a.tar.gz
giscanner: move odict.OrderedDict into a collections package
because we'll add more related code to collections later on https://bugzilla.gnome.org/show_bug.cgi?id=699536
Diffstat (limited to 'giscanner/collections/__init__.py')
-rw-r--r--giscanner/collections/__init__.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/giscanner/collections/__init__.py b/giscanner/collections/__init__.py
new file mode 100644
index 00000000..29987a10
--- /dev/null
+++ b/giscanner/collections/__init__.py
@@ -0,0 +1,22 @@
+# -*- Mode: Python -*-
+# GObject-Introspection - a framework for introspecting GObject libraries
+# Copyright (C) 2013 Dieter Verfaillie <dieterv@optionexplicit.be>
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; either version 2
+# of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+# 02110-1301, USA.
+#
+
+
+from .ordereddict import OrderedDict