[Mailman-Developers] cookies

Hrvoje Niksic hniksic@iskon.hr
20 Jul 2000 15:33:48 +0200


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.