diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2017-03-27 16:05:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-27 16:05:26 +0200 |
commit | d6debb24e06152a827769b0cac24c47deccdeac1 (patch) | |
tree | f26655d4333391e344dac8cbf6cf2dc08c18b8b4 /Lib/test/test_http_cookies.py | |
parent | 604e74c6beb2585c81083fa85f0e5a4d46965cbc (diff) | |
download | cpython-d6debb24e06152a827769b0cac24c47deccdeac1.tar.gz cpython-d6debb24e06152a827769b0cac24c47deccdeac1.zip |
bpo-29919: Remove unused imports found by pyflakes (#137)
Make also minor PEP8 coding style fixes on modified imports.
Diffstat (limited to 'Lib/test/test_http_cookies.py')
-rw-r--r-- | Lib/test/test_http_cookies.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_http_cookies.py b/Lib/test/test_http_cookies.py index ca21476da62..2ff690243fc 100644 --- a/Lib/test/test_http_cookies.py +++ b/Lib/test/test_http_cookies.py @@ -1,11 +1,11 @@ # Simple test suite for http/cookies.py import copy -from test.support import run_unittest, run_doctest, check_warnings +from test.support import run_unittest, run_doctest import unittest from http import cookies import pickle -import warnings + class CookieTests(unittest.TestCase): |