mirror of
https://github.com/python/cpython.git
synced 2025-12-04 00:30:19 +00:00
Change some uses of cStringIO.StringIO to io.StringIO.
This is undoubtedly insufficient and in some cases just as broken as before.
This commit is contained in:
parent
7ac9d40201
commit
68937b4cbc
19 changed files with 26 additions and 89 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue