diff options
| author | Barry Warsaw | 2015-01-04 20:40:47 -0500 |
|---|---|---|
| committer | Barry Warsaw | 2015-01-04 20:40:47 -0500 |
| commit | 81be16cdfd9ecf86092c90874eb661be2e754043 (patch) | |
| tree | b7493a05db05a93f875e3a27754d852b702cfb50 /src/mailman/commands/docs | |
| parent | 3ed695772e7e9c17234097e820a4cedfb0ad3a5d (diff) | |
| download | mailman-81be16cdfd9ecf86092c90874eb661be2e754043.tar.gz mailman-81be16cdfd9ecf86092c90874eb661be2e754043.tar.zst mailman-81be16cdfd9ecf86092c90874eb661be2e754043.zip | |
We don't need the 'six' package any more.
Diffstat (limited to 'src/mailman/commands/docs')
| -rw-r--r-- | src/mailman/commands/docs/inject.rst | 3 | ||||
| -rw-r--r-- | src/mailman/commands/docs/members.rst | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/src/mailman/commands/docs/inject.rst b/src/mailman/commands/docs/inject.rst index de295b8f6..68a5d534d 100644 --- a/src/mailman/commands/docs/inject.rst +++ b/src/mailman/commands/docs/inject.rst @@ -133,9 +133,8 @@ Standard input The message text can also be provided on standard input. :: - >>> from six import StringIO + >>> from io import StringIO - # Remember: we've got unicode literals turned on. >>> standard_in = StringIO(str("""\ ... From: bperson@example.com ... To: test@example.com diff --git a/src/mailman/commands/docs/members.rst b/src/mailman/commands/docs/members.rst index 28f238f31..490287235 100644 --- a/src/mailman/commands/docs/members.rst +++ b/src/mailman/commands/docs/members.rst @@ -229,7 +229,7 @@ You can also specify ``-`` as the filename, in which case the addresses are taken from standard input. :: - >>> from six import StringIO + >>> from io import StringIO >>> fp = StringIO() >>> for address in ('dperson@example.com', ... 'Elly Person <eperson@example.com>', |
