debian/python-cubicweb.lintian-overrides
author |
Denis Laxalde <denis.laxalde@logilab.fr> |
|
Tue, 06 Aug 2019 14:26:17 +0200 |
branch | 3.26 |
changeset 12719 |
9fb4a71f119d |
parent 11833 |
1212f0fa2d42
|
permissions |
-rw-r--r-- |
[py3] Pass bytes as "msg" to smtplib.SMTP.sendmail()
When passing a unicode string to smtplib.SMTP.sendmail() as "msg"
argument, there is an implicit bytes encoding using "ascii" encoding in
python3. Of course this does not work if the string contains non-ASCII
characters. In fact, config's sendmails method intent to pass bytes to
smtplib.SMTP.sendmail() as it uses msg.as_string() method.
Unfortunately, in python3, this method returns a unicode string whereas
it returns a bytes string in python2; we thus fix this by calling
as_bytes() method on python3.
As there is no "as_bytes" method in python2, we need to handle python2
compatibility by hand and either call as_string() or as_bytes().
In testlib, where we mock smtplib.SMTP, we need to keep the "msg"
argument of Email class (defined in testlib as well) a unicode string.
Otherwise, it fails to be parsed by email.message_from_string() (from
stdlib) if it is bytes on python3.
11423
|
1 |
missing-dep-for-interpreter make => make | build-essential | dpkg-dev (usr/*/cubicweb/skeleton/debian/rules)
|
11833
1212f0fa2d42
[debian] Have a single python-cubicweb binary for the library
Denis Laxalde <denis.laxalde@logilab.fr>
diff
changeset
|
2 |
embedded-javascript-library usr/share/cubicweb/cubes/shared/data/jquery.js
|