March 9, 2014
8:09 a.m.
around Zinc-Character-Encoding-Core :) Stef On 09 Mar 2014, at 09:07, Pharo4Stef <pharo4Stef@free.fr> wrote:
Iâm sure that we have that. I remember svenâs code using encoder but I do not know where.
# Method for encoding ints with base64 encoding def encode(n): data = struct.pack("i", n) s = base64.b64encode(data) return s