diff options
| author | Barry Warsaw | 2014-12-15 21:25:12 -0500 |
|---|---|---|
| committer | Barry Warsaw | 2014-12-15 21:25:12 -0500 |
| commit | 7386356396f5e10cb25660b57a17896ae2f0dbf2 (patch) | |
| tree | 39ec0d6059d8b49645c96f3f087c296d0c164a1a /src/mailman/runners/docs/digester.rst | |
| parent | 40c50483989c6141a528d2c3e1b5830b89a96e5e (diff) | |
| download | mailman-7386356396f5e10cb25660b57a17896ae2f0dbf2.tar.gz mailman-7386356396f5e10cb25660b57a17896ae2f0dbf2.tar.zst mailman-7386356396f5e10cb25660b57a17896ae2f0dbf2.zip | |
More test repair.
Diffstat (limited to 'src/mailman/runners/docs/digester.rst')
| -rw-r--r-- | src/mailman/runners/docs/digester.rst | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/mailman/runners/docs/digester.rst b/src/mailman/runners/docs/digester.rst index 14580c336..536cf06c2 100644 --- a/src/mailman/runners/docs/digester.rst +++ b/src/mailman/runners/docs/digester.rst @@ -538,12 +538,12 @@ and the other is the RFC 1153 digest. Only wperson and xperson get the MIME digests. >>> sorted(mime.msgdata['recipients']) - [u'wperson@example.com', u'xperson@example.com'] + ['wperson@example.com', 'xperson@example.com'] Only yperson and zperson get the RFC 1153 digests. >>> sorted(rfc1153.msgdata['recipients']) - [u'yperson@example.com', u'zperson@example.com'] + ['yperson@example.com', 'zperson@example.com'] Now uperson decides that they would like to start receiving digests too. :: @@ -558,10 +558,10 @@ Now uperson decides that they would like to start receiving digests too. >>> mime, rfc1153 = mime_rfc1153(messages) >>> sorted(mime.msgdata['recipients']) - [u'uperson@example.com', u'wperson@example.com', u'xperson@example.com'] + ['uperson@example.com', 'wperson@example.com', 'xperson@example.com'] >>> sorted(rfc1153.msgdata['recipients']) - [u'yperson@example.com', u'zperson@example.com'] + ['yperson@example.com', 'zperson@example.com'] At this point, both uperson and wperson decide that they'd rather receive regular deliveries instead of digests. uperson would like to get any last @@ -581,10 +581,10 @@ as much and does not want to receive one last digest. >>> messages = get_queue_messages('virgin') >>> mime, rfc1153 = mime_rfc1153(messages) >>> sorted(mime.msgdata['recipients']) - [u'uperson@example.com', u'xperson@example.com'] + ['uperson@example.com', 'xperson@example.com'] >>> sorted(rfc1153.msgdata['recipients']) - [u'yperson@example.com', u'zperson@example.com'] + ['yperson@example.com', 'zperson@example.com'] Since uperson has received their last digest, they will not get any more of them. @@ -599,7 +599,7 @@ them. >>> mime, rfc1153 = mime_rfc1153(messages) >>> sorted(mime.msgdata['recipients']) - [u'xperson@example.com'] + ['xperson@example.com'] >>> sorted(rfc1153.msgdata['recipients']) - [u'yperson@example.com', u'zperson@example.com'] + ['yperson@example.com', 'zperson@example.com'] |
