Kaydet (Commit) 234480df authored tarafından Terry Jan Reedy's avatar Terry Jan Reedy

Merge with 3.5

......@@ -4,7 +4,7 @@
import unittest
from test.test_email.test_email import TestEmailBase
from test.test_email import TestEmailBase
from email.charset import Charset
from email.header import Header, decode_header
from email.message import Message
......
......@@ -10,10 +10,9 @@ import sys
import os
import unittest
from io import StringIO
from types import ListType
from email.test.test_email import TestEmailBase
from test.support import TestSkipped, run_unittest
from test.test_email import TestEmailBase
from test.support import run_unittest
import email
from email import __file__ as testfile
......@@ -28,7 +27,7 @@ def openfile(filename):
try:
openfile('crispin-torture.txt')
except OSError:
raise TestSkipped
raise unittest.SkipTest
......@@ -50,7 +49,7 @@ class TestCrispinTorture(TortureBase):
neq = self.ndiffAssertEqual
msg = self._msgobj('crispin-torture.txt')
payload = msg.get_payload()
eq(type(payload), ListType)
eq(type(payload), list)
eq(len(payload), 12)
eq(msg.preamble, None)
eq(msg.epilogue, '\n')
......@@ -113,7 +112,6 @@ multipart/mixed
audio/x-sun
""")
def _testclasses():
mod = sys.modules[__name__]
return [getattr(mod, name) for name in dir(mod) if name.startswith('Test')]
......@@ -131,6 +129,5 @@ def test_main():
run_unittest(testclass)
if __name__ == '__main__':
unittest.main(defaultTest='suite')
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment