Re: [Mailman-Developers] cookies
July 20, 2000
1:33 p.m.
bwarsaw@beopen.com (Barry A. Warsaw) writes:
def hexlify(s): acc = []
- def munge(byte, acc=acc, a=ord('a'), z=ord('0')):
if byte > 9: acc.append(byte+a-10)else: acc.append(byte+z)
- def munge(byte, append=acc.append, a=ord('a'), z=ord('0')):
if byte > 9: append(byte+a-10) ...else: append(byte+z)
What version of Mailman is that? I'm using 2.0beta4 and can't find anything resembling hexlify in the sources.
I ask because I do see "Error decoding authorization cookie" messages and would like to fix them.
9399
Age (days ago)
9399
Last active (days ago)
1 comments
2 participants
participants (2)
-
bwarsaw@beopen.com -
Hrvoje Niksic