[Zope3-checkins] CVS: Zope3/src/zope/app/mail - mail.py:1.3

Jim Fulton jim@zope.com
Tue, 3 Jun 2003 18:46:51 -0400


Update of /cvs-repository/Zope3/src/zope/app/mail
In directory cvs.zope.org:/tmp/cvs-serv6144/src/zope/app/mail

Modified Files:
	mail.py 
Log Message:
After cleaning up placefull test setup (see earlier checkins)
cleaned up unneeded imports in test modules (and some other modules)
based on the results of running Martijn Faassen's importchecker tool.


=== Zope3/src/zope/app/mail/mail.py 1.2 => 1.3 ===
--- Zope3/src/zope/app/mail/mail.py:1.2	Mon May 19 06:03:37 2003
+++ Zope3/src/zope/app/mail/mail.py	Tue Jun  3 18:46:20 2003
@@ -17,10 +17,7 @@
 
 $Id$
 """
-from smtplib import SMTP
-
-from zope.app.interfaces.mail import IAsyncMailService, IMailer, IMailSentEvent
-from zope.app.event import publish
+from zope.app.interfaces.mail import IAsyncMailService
 
 class AsyncMailService:
     __doc__ = IAsyncMailService.__doc__