"Matt Helm" <[EMAIL PROTECTED]> wrote in message 
news:[EMAIL PROTECTED]
> However, what is the proper way to recover the actual string? I have
> been using:
>
>    r.split("\0", 1)[0]
>
I'd prefer to use
r[:-1]
to strip off the last character of the string. 


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

Reply via email to