diff options
author | R David Murray <rdmurray@bitdance.com> | 2013-03-07 23:16:47 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2013-03-07 23:16:47 (GMT) |
commit | 965794ed5893882b5b0e49ce17ef9e137cfa9db1 (patch) | |
tree | 4abe101110a6a1f91e9f09051b4c9df49a3b76ab /Lib | |
parent | addb0be63e82fd99d931c227b07a8f515ad3d181 (diff) | |
parent | b9534f4ed5cb8c78468868d2ca44769057084d83 (diff) | |
download | cpython-965794ed5893882b5b0e49ce17ef9e137cfa9db1.zip cpython-965794ed5893882b5b0e49ce17ef9e137cfa9db1.tar.gz cpython-965794ed5893882b5b0e49ce17ef9e137cfa9db1.tar.bz2 |
Merge: PEP8 fixup on previous patch, remove unused imports in test_email.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/email/generator.py | 2 | ||||
-rw-r--r-- | Lib/test/test_email/test_email.py | 6 |
2 files changed, 2 insertions, 6 deletions
diff --git a/Lib/email/generator.py b/Lib/email/generator.py index 27dd0db..24f2abf 100644 --- a/Lib/email/generator.py +++ b/Lib/email/generator.py @@ -156,7 +156,7 @@ class Generator: self.write(self._NL) laststripped = lines[-1].rstrip('\r\n') self.write(laststripped) - if len(lines[-1])!=len(laststripped): + if len(lines[-1]) != len(laststripped): self.write(self._NL) def _write(self, msg): diff --git a/Lib/test/test_email/test_email.py b/Lib/test/test_email/test_email.py index dd54a1c..23f062f 100644 --- a/Lib/test/test_email/test_email.py +++ b/Lib/test/test_email/test_email.py @@ -2,14 +2,10 @@ # Contact: email-sig@python.org # email package unit tests -import os import re -import sys import time import base64 -import difflib import unittest -import warnings import textwrap from io import StringIO, BytesIO @@ -37,7 +33,7 @@ from email import iterators from email import base64mime from email import quoprimime -from test.support import run_unittest, unlink +from test.support import unlink from test.test_email import openfile, TestEmailBase NL = '\n' |