From caee9c10c5e22fd2b3ba2ae09fefa6e0e492bb06 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Fri, 19 Oct 2012 07:18:58 -0400 Subject: [PATCH] python: Use an OrderedDict for Module.info (preserving modinfo ordering). --- libkmod/python/kmod/module.pyx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libkmod/python/kmod/module.pyx b/libkmod/python/kmod/module.pyx index b25f24f..31336b0 100644 --- a/libkmod/python/kmod/module.pyx +++ b/libkmod/python/kmod/module.pyx @@ -9,6 +9,8 @@ # along with this program; if not, write to the Free Software Foundation, # Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +import collections as _collections + cimport libc.errno as _errno cimport _libkmod_h @@ -75,7 +77,7 @@ cdef class Module (object): err = _libkmod_h.kmod_module_get_info(self.module, &ml.list) if err < 0: raise _KmodError('Could not get versions') - info = {} + info = _collections.OrderedDict() try: for item in ml: mli = <_list.ModListItem> item -- 2.7.4