[Zope3-checkins] CVS: Zope3/src/zope/app/mail/tests - test_asyncmailservice.py:1.2 test_batchmailer.py:1.2 test_directives.py:1.2 test_simplemailer.py:1.2
Martijn Faassen
m.faassen@vet.uu.nl
Thu, 1 May 2003 15:35:55 -0400
Update of /cvs-repository/Zope3/src/zope/app/mail/tests
In directory cvs.zope.org:/tmp/cvs-serv30407/zope/app/mail/tests
Modified Files:
test_asyncmailservice.py test_batchmailer.py
test_directives.py test_simplemailer.py
Log Message:
Importgeddon part the second. Removed unused imports throughout the
source tree. This should have taken care of most unused imports
in Zope 3. :)
=== Zope3/src/zope/app/mail/tests/test_asyncmailservice.py 1.1 => 1.2 ===
--- Zope3/src/zope/app/mail/tests/test_asyncmailservice.py:1.1 Wed Apr 16 09:45:44 2003
+++ Zope3/src/zope/app/mail/tests/test_asyncmailservice.py Thu May 1 15:35:24 2003
@@ -18,7 +18,7 @@
$Id$
"""
from unittest import TestCase, TestSuite, makeSuite
-from zope.app.interfaces.mail import IAsyncMailService, IMailer, IMailSentEvent
+from zope.app.interfaces.mail import IAsyncMailService, IMailer
from zope.app.mail.service import AsyncMailService
=== Zope3/src/zope/app/mail/tests/test_batchmailer.py 1.1 => 1.2 ===
--- Zope3/src/zope/app/mail/tests/test_batchmailer.py:1.1 Wed Apr 16 09:45:44 2003
+++ Zope3/src/zope/app/mail/tests/test_batchmailer.py Thu May 1 15:35:24 2003
@@ -17,7 +17,7 @@
$Id$
"""
-from unittest import TestCase, TestSuite, makeSuite
+from unittest import TestSuite, makeSuite
from test_simplemailer import TestSimpleMailer
=== Zope3/src/zope/app/mail/tests/test_directives.py 1.1 => 1.2 ===
--- Zope3/src/zope/app/mail/tests/test_directives.py:1.1 Wed Apr 16 09:45:44 2003
+++ Zope3/src/zope/app/mail/tests/test_directives.py Thu May 1 15:35:24 2003
@@ -15,7 +15,6 @@
$Id$
"""
-import os
import unittest
from cStringIO import StringIO
@@ -23,7 +22,6 @@
from zope.component import getService
from zope.component.tests.placelesssetup import PlacelessSetup
from zope.configuration.xmlconfig import xmlconfig, Context, XMLConfig
-from zope.configuration.exceptions import ConfigurationError
from zope.app.component.metaconfigure import managerHandler, provideInterface
import zope.app.mail
=== Zope3/src/zope/app/mail/tests/test_simplemailer.py 1.1 => 1.2 ===
--- Zope3/src/zope/app/mail/tests/test_simplemailer.py:1.1 Wed Apr 16 09:45:44 2003
+++ Zope3/src/zope/app/mail/tests/test_simplemailer.py Thu May 1 15:35:24 2003
@@ -18,7 +18,7 @@
$Id$
"""
from unittest import TestCase, TestSuite, makeSuite
-from zope.app.interfaces.mail import IAsyncMailService, IMailer, IMailSentEvent
+from zope.app.interfaces.mail import IMailer
from zope.app.mail.event import MailSentEvent
import zope.app.mail.mailer