Hi,
I cannot compile python-gssapi with Python 2.6:
File "python-gssapi-0.6.4/gssapi/bindings/__init__.py", line 175
return {_kwargs_decode(key): _kwargs_decode(value) for key, value in input.items()}
^
SyntaxError: invalid syntax
I fixed this issue with this (slightly ugly) code:
retdict = {}
for key, value in input.items(): retdict[_kwargs_decode(key)] = _kwargs_decode(value)
return retdict
Hi, I cannot compile python-gssapi with Python 2.6: