From 68937b4cbcc3e88d4207e6391a311f9b7d067b71 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Fri, 18 May 2007 00:51:22 +0000 Subject: Change some uses of cStringIO.StringIO to io.StringIO. This is undoubtedly insufficient and in some cases just as broken as before. --- Lib/smtpd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/smtpd.py') diff --git a/Lib/smtpd.py b/Lib/smtpd.py index 73e7777fa0..2e09c5ad99 100755 --- a/Lib/smtpd.py +++ b/Lib/smtpd.py @@ -374,7 +374,7 @@ class PureProxy(SMTPServer): class MailmanProxy(PureProxy): def process_message(self, peer, mailfrom, rcpttos, data): - from cStringIO import StringIO + from io import StringIO from Mailman import Utils from Mailman import Message from Mailman import MailList -- cgit v1.2.1