This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ddvoinikov
Recipients ddvoinikov
Date 2008-08-20.06:00:31
SpamBayes Score 7.959022e-07
Marked as misclassified No
Message-id <1219212034.35.0.601192649417.issue3613@psf.upfronthosting.co.za>
In-reply-to
Content
This quote from base64.py:

---
bytes_types = (bytes, bytearray)  # Types acceptable as binary data
...
def encodestring(s):
    """Encode a string into multiple lines of base-64 data.

    Argument and return value are bytes.
    """
    if not isinstance(s, bytes_types):
        raise TypeError("expected bytes, not %s" % s.__class__.__name__)
    ...
---

shows that encodestring method won't accept str for an argument, only
bytes. Perhaps this is by design, but then wouldn't it make sense to
change the name of the method ?

Anyway, this behavior clashes in (the least I know) xmlrpc.client, line
1168 when basic authentication is present:

---
auth = base64.encodestring(urllib.parse.unquote(auth))
---

because unquote() returns str, not bytes.
History
Date User Action Args
2008-08-20 06:00:35ddvoinikovsetrecipients: + ddvoinikov
2008-08-20 06:00:34ddvoinikovsetmessageid: <1219212034.35.0.601192649417.issue3613@psf.upfronthosting.co.za>
2008-08-20 06:00:33ddvoinikovlinkissue3613 messages
2008-08-20 06:00:31ddvoinikovcreate