#11546: regressiontests.mail fails on Ubuntu 9.04
-----------------------------------------------------------------------+----
Reporter: Richard Davies <[email protected]> |
Owner: nobody
Status: new |
Milestone: 1.1
Component: django.core.mail |
Version: SVN
Resolution: |
Keywords:
Stage: Accepted |
Has_patch: 0
Needs_docs: 0 |
Needs_tests: 0
Needs_better_patch: 0 |
-----------------------------------------------------------------------+----
Comment (by russellm):
On deeper inspection, it appears to be a 64 bit vs 32 bit issue.
On 32 bit platforms, multipart boundaries of the form:
{{{
Content-Type: multipart/alternative;
boundary="===============0582992217=="
}}}
which is what the tests expect. However on 64 bit platforms, you get:
{{{
Content-Type: multipart/alternative;
boundary="===============8480584666162200602=="
}}}
which gets line wrapped due to the extra length of the boundary string.
This means it is a failure of the test, not of the code itself. I'm
looking into ways around the problem.
--
Ticket URL: <http://code.djangoproject.com/ticket/11546#comment:2>
Django <http://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---