py <[EMAIL PROTECTED]> wrote:
   ...
>     encoded.append(binascii.b2a_uu(stringToEncode))

binascii.b2a_uu only works for up to 45 bytes at once; but if you were
feeding it more than 45 bytes, this should raise a binascii.Error
itself.

> ..any idea why this is happening?  Anyone successfully use the uu to
> encode/decode strings of varying length (even larger strings, more than
> a few hundred characters)?

Definitely not, given the above limit.  But I still don't quite
understand the exact mechanics of the error you're getting.


Alex
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to