diff options
| author | Mark Sapiro | 2012-04-11 15:58:47 -0700 |
|---|---|---|
| committer | Mark Sapiro | 2012-04-11 15:58:47 -0700 |
| commit | 13533b6ed501053b43b1db349ed9660b33af156c (patch) | |
| tree | 8b7dd4163cdd50da8af9b78ad67dce91f169ea0c /src | |
| parent | e337e914137e89ce8c58a8e66ae21d0591727d3b (diff) | |
| download | mailman-13533b6ed501053b43b1db349ed9660b33af156c.tar.gz mailman-13533b6ed501053b43b1db349ed9660b33af156c.tar.zst mailman-13533b6ed501053b43b1db349ed9660b33af156c.zip | |
Diffstat (limited to 'src')
| -rw-r--r-- | src/mailman/runners/docs/digester.rst | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mailman/runners/docs/digester.rst b/src/mailman/runners/docs/digester.rst index 42004bf06..d0231a895 100644 --- a/src/mailman/runners/docs/digester.rst +++ b/src/mailman/runners/docs/digester.rst @@ -429,9 +429,8 @@ The content can be decoded to see the actual digest text. # We must display the repr of the decoded value because doctests cannot # handle the non-ascii characters. - >>> import pprint - >>> print pprint.pformat([repr(line) - ... for line in rfc1153.msg.get_payload(decode=True).splitlines()]) + >>> [repr(line) + ... for line in rfc1153.msg.get_payload(decode=True).splitlines()] ["'Envoyez vos messages pour la liste Test \\xc3\\xa0'", "'\\ttest@example.com'", "''", |
