You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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:
The text was updated successfully, but these errors were encountered: