diff options
| author | Barry Warsaw | 2014-04-28 11:23:35 -0400 |
|---|---|---|
| committer | Barry Warsaw | 2014-04-28 11:23:35 -0400 |
| commit | d4d71f71f08d6d440b17482eecc5472dcfe6cbae (patch) | |
| tree | 71f08b3d60f698883294eaa6d1bf366a095da011 /src/mailman/runners/docs/digester.rst | |
| parent | 7536530dcd8d6303c0a869e8c9c2cb2517b9b018 (diff) | |
| download | mailman-d4d71f71f08d6d440b17482eecc5472dcfe6cbae.tar.gz mailman-d4d71f71f08d6d440b17482eecc5472dcfe6cbae.tar.zst mailman-d4d71f71f08d6d440b17482eecc5472dcfe6cbae.zip | |
Use print functions consistently through, and update all __future__ imports to
reflect this.
Also, mock out sys.stderr on some tests so that their nose2 output is quieter.
A few other minor coding style consistencies.
Diffstat (limited to 'src/mailman/runners/docs/digester.rst')
| -rw-r--r-- | src/mailman/runners/docs/digester.rst | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mailman/runners/docs/digester.rst b/src/mailman/runners/docs/digester.rst index 96e8739e3..cd0fba67c 100644 --- a/src/mailman/runners/docs/digester.rst +++ b/src/mailman/runners/docs/digester.rst @@ -48,7 +48,7 @@ messages to put in the digest. The marker message is empty. - >>> print entry.msg.as_string() + >>> print(entry.msg.as_string()) But the message metadata has a reference to the digest file. :: @@ -97,7 +97,7 @@ The MIME digest is a multipart, and the RFC 1153 digest is the other one. The MIME digest has lots of good stuff, all contained in the multipart. - >>> print mime.msg.as_string() + >>> print(mime.msg.as_string()) Content-Type: multipart/mixed; boundary="===============...==" MIME-Version: 1.0 From: test-request@example.com @@ -199,7 +199,7 @@ The MIME digest has lots of good stuff, all contained in the multipart. The RFC 1153 contains the digest in a single plain text message. - >>> print rfc1153.msg.as_string() + >>> print(rfc1153.msg.as_string()) From: test-request@example.com Subject: Test Digest, Vol 1, Issue 1 To: test@example.com @@ -342,7 +342,7 @@ One of which is the MIME digest and the other of which is the RFC 1153 digest. You can see that the digests contain a mix of French and Japanese. - >>> print mime.msg.as_string() + >>> print(mime.msg.as_string()) Content-Type: multipart/mixed; boundary="===============...==" MIME-Version: 1.0 From: test-request@example.com @@ -411,7 +411,7 @@ You can see that the digests contain a mix of French and Japanese. The RFC 1153 digest will be encoded in UTF-8 since it contains a mixture of French and Japanese characters. - >>> print rfc1153.msg.as_string() + >>> print(rfc1153.msg.as_string()) From: test-request@example.com Subject: Groupe Test, Vol 1, Parution 2 To: test@example.com |
