commit | 0312494665ba9a6492956183c181e1b87e10820d | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Tue Jun 10 15:50:56 2008 +0000 |
committer | Georg Brandl <georg@python.org> | Tue Jun 10 15:50:56 2008 +0000 |
tree | f5965d4f17e7d075661728a5f25e608e32bd5f62 | |
parent | b1ef6735ba175d243b3bb8d7f46c53ffbecfb7bd [diff] [blame] |
Remove last traces of cStringIO.
diff --git a/Doc/library/email.message.rst b/Doc/library/email.message.rst index 5344b45..f51230c 100644 --- a/Doc/library/email.message.rst +++ b/Doc/library/email.message.rst
@@ -48,7 +48,7 @@ :class:`Generator` instance and use its :meth:`flatten` method directly. For example:: - from cStringIO import StringIO + from io import StringIO from email.generator import Generator fp = StringIO() g = Generator(fp, mangle_from_=False, maxheaderlen=60)