Skip to content
Snippets Groups Projects
Commit a6a17f79 authored by Pierre-Yves David's avatar Pierre-Yves David :octopus:
Browse files

safehasattr: pass attribute name as string instead of bytes

This is a step toward replacing `util.safehasattr` usage with plain `hasattr`.
The builtin function behave poorly in Python2 but this was fixed in Python3.

These change are done one by one as they tend to have a small odd to trigger
puzzling breackage.
parent 90945014
No related branches found
No related tags found
2 merge requests!618Draft: 6.5rc0,!555simple preliminary changes toward getting ride of "util.safehasattr"
......@@ -281,7 +281,7 @@
def getmember(self, context, mapping, key):
# TODO: maybe split hybrid list/dict types?
if not util.safehasattr(self._values, b'get'):
if not util.safehasattr(self._values, 'get'):
raise error.ParseError(_(b'not a dictionary'))
key = unwrapastype(context, mapping, key, self._keytype)
return self._wrapvalue(key, self._values.get(key))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment