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 got the following error on Python 3.2 and 3.3:
File "/opt/lang/python/3.2.2/lib/python3.2/http/cookies.py", line 486, in __setitem__
rval, cval = self.value_encode(value)
File "/opt/lang/python/3.2.2/lib/python3.2/site-packages/Beaker-1.6.4-py3.2.egg/beaker/session.py", line 70, in value_encode
sig = HMAC.new(self.secret, val.encode('UTF-8'), SHA1).hexdigest()
AttributeError: 'bytes' object has no attribute 'encode'
The following is a monkey patch to avoid this error,
but I'm not sure that it is correct solution.
from beaker.crypto import hmac as HMAC, hmac_sha1 as SHA1
from beaker.session import SignedCookie
def value_encode(self, val):
#sig = HMAC.new(self.secret, val.encode('UTF-8'), SHA1).hexdigest()
sig = HMAC.new(self.secret, val, SHA1).hexdigest()
return str(val), ("%s%s" % (sig, val))
SignedCookie.value_encode = value_encode
And, even with monkey patching, Beaker's SessionMiddleware
doesn't save session correctly on Python3.
(Pyton 3.3.3, MacOSX)
Here is my sample code (which works very well on Python2.7!):
I also get that error, which is surprising considering that it says that Beaker should work with Python 3.2. As far as I know, the str.encode() was removed in python3 in favor of str.decode(). Why is there still legacy code left?
Hi,
I got the following error on Python 3.2 and 3.3:
The following is a monkey patch to avoid this error,
but I'm not sure that it is correct solution.
And, even with monkey patching, Beaker's SessionMiddleware
doesn't save session correctly on Python3.
(Pyton 3.3.3, MacOSX)
Here is my sample code (which works very well on Python2.7!):
Could you help me?
The text was updated successfully, but these errors were encountered: