Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
SUSE:SLE-12:Update
openlmi-tools
python-2.6.patch
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File python-2.6.patch of Package openlmi-tools
diff -wruN -x '*~' -x '*.o' -x '*.a' -x '*.so' -x '*.so.[0-9]' -x autom4te.cache -x .deps -x .libs ../orig-openlmi-tools-0.9/cli/lmi/shell/LMIInstance.py ./cli/lmi/shell/LMIInstance.py --- ../orig-openlmi-tools-0.9/cli/lmi/shell/LMIInstance.py 2013-11-04 15:50:20.000000000 +0100 +++ ./cli/lmi/shell/LMIInstance.py 2014-01-20 14:59:44.588223271 +0100 @@ -595,8 +595,8 @@ :returns: dictionary of :py:class:`CIMInstance` properties :raises: :py:exc:`.LMIDeletedObjectError` """ - return pywbem.NocaseDict({ - k: x.value for k, x in self._cim_instance.properties.iteritems()}) + return pywbem.NocaseDict( + dict((k, x.value) for k, x in self._cim_instance.properties.iteritems())) @lmi_possibly_deleted(None) def property_value(self, prop_name): diff -wruN -x '*~' -x '*.o' -x '*.a' -x '*.so' -x '*.so.[0-9]' -x autom4te.cache -x .deps -x .libs ../orig-openlmi-tools-0.9/cli/lmi/shell/LMIMethod.py ./cli/lmi/shell/LMIMethod.py --- ../orig-openlmi-tools-0.9/cli/lmi/shell/LMIMethod.py 2013-11-04 15:50:20.000000000 +0100 +++ ./cli/lmi/shell/LMIMethod.py 2014-01-20 14:58:44.857763554 +0100 @@ -192,9 +192,7 @@ rval = None rparams = pywbem.NocaseDict() if not job_inst.JobOutParameters is None: - rparams = pywbem.NocaseDict({ - k: x.value - for k, x in job_inst.JobOutParameters.properties.iteritems()}) + rparams = pywbem.NocaseDict(dict((k, x.value) for k, x in job_inst.JobOutParameters.properties.iteritems())) rval = rparams["__ReturnValue"] del rparams["__ReturnValue"] # NocaseDict has no pop() errorstr = "" diff -wruN -x '*~' -x '*.o' -x '*.a' -x '*.so' -x '*.so.[0-9]' -x autom4te.cache -x .deps -x .libs ../orig-openlmi-tools-0.9/cli/lmi/shell/LMIUtil.py ./cli/lmi/shell/LMIUtil.py --- ../orig-openlmi-tools-0.9/cli/lmi/shell/LMIUtil.py 2013-11-04 15:50:20.000000000 +0100 +++ ./cli/lmi/shell/LMIUtil.py 2014-01-20 14:57:20.310281826 +0100 @@ -132,8 +132,7 @@ """ cast_func = cast.get(t.lower(), lambda x: x) if isinstance(value, (dict, pywbem.NocaseDict)): - return pywbem.NocaseDict({ - k: _lmi_do_cast(t, val, cast) for k, val in value.iteritems()}) + return pywbem.NocaseDict(dict((k, _lmi_do_cast(t, val, cast)) for k, val in value.iteritems())) elif isinstance(value, list): return map(lambda val: _lmi_do_cast(t, val, cast), value) elif isinstance(value, tuple): @@ -267,9 +266,7 @@ elif isinstance(value, pywbem.CIMFloat): return float(value) elif isinstance(value, (dict, pywbem.NocaseDict)): - return pywbem.NocaseDict({ - k: lmi_transform_to_lmi(conn, val) - for k, val in value.iteritems()}) + return pywbem.NocaseDict(dict((k, lmi_transform_to_lmi(conn, val)) for k, val in value.iteritems())) elif isinstance(value, list): return map(lambda val: lmi_transform_to_lmi(conn, val), value) elif isinstance(value, tuple): @@ -328,7 +325,7 @@ def make_key(path): path.host = None return hashlib.md5(path.classname.lower() + path.namespace.lower() + \ - str({ k.lower() : v for k, v in path.keybindings.iteritems() })).hexdigest() + str(dict((k.lower(), v) for k, v in path.keybindings.iteritems() ))).hexdigest() result = [] @@ -352,7 +349,7 @@ # Get instances, which will be joined as associators for ref_class_name in ref_class_names: (inst_list, out, err) = conn._client._get_instances(ref_class_name) - instances.update({ make_key(inst.path) : inst for inst in inst_list }) + instances.update(dict((make_key(inst.path), inst) for inst in inst_list)) # Join associated objects (assoc_instance_names, out, err) = conn._client._get_instance_names(assoc_class.classname)
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor