[wxpython-users] What does "name=3D" do?

Tim Roberts timr at probo.com
Tue Apr 1 13:12:27 PDT 2008


On Tue, 1 Apr 2008 08:42:21 -0700, Kevin Ollivier =

<kevin-lists at theolliviers.com> wrote:
> On Apr 1, 2008, at 7:57 AM, Mike Driscoll wrote:
>   =

>> > Hi,
>> >
>> > I keep seeing posts lately that have "name=3D3D" in their code (or  =

>> > variations thereof).  What is this? I'm not finding much on Google.  =

>> > Can someone give me use cases?
>>     =

>
> It's actually just "name", =3D3D is just something that mail clients add  =

> for some reason. If you look at those messages again, you'll see =3D3D  =

> all over the place.
>   =


This is an artifact of using the digest version of the mailing list.

Many people have their email clients set to send in "quoted-printable" =

format.  In quoted-printable format, certain special characters are =

"escaped" to allow them to be sent through 7-bit channels.  If you've =

ever seen a message where every line ended in =3D20, that's the escaped =

version of a space character.

Because the equal sign is used as the escape character, a standalone =3D =

has to be escaped.  The hex value of the =3D character is 3D, so the =

escaped character is =3D3D.

When you get the messages through the normal mailing list, the header =

that says "this message is quoted printable" gets sent along, so your =

mail reader does the right thing.  For the digest, however, all of the =

individual email headers get stripped out.  The digest is sent as plain =

text, and as a result we see the escape codes in any messages that were =

originally quoted-printable.

A more serious problem is the people who send messages in Base64 =

format.  They appear just fine in the regular mailing list, but all we =

see in the digest is a solid block of random garbage.

-- =

Tim Roberts, timr at probo.com
Providenza & Boekelheide, Inc.

-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.wxwidgets.org/pipermail/wxpython-users/attachments/200804=
01/1cdabe52/attachment.htm


More information about the wxpython-users mailing list