diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2015-03-12 16:50:49 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2015-03-12 16:50:49 (GMT) |
commit | 18987a11ce0f8f55aa6ec63a9d2f8e84d7460984 (patch) | |
tree | 6a054a2b0d0f0717d9ed1b381b498cd3b7de0a98 | |
parent | 0561c53d782e67261f09b276280a43b481b9b032 (diff) | |
download | cpython-18987a11ce0f8f55aa6ec63a9d2f8e84d7460984.zip cpython-18987a11ce0f8f55aa6ec63a9d2f8e84d7460984.tar.gz cpython-18987a11ce0f8f55aa6ec63a9d2f8e84d7460984.tar.bz2 |
Issue #20617: Remove unused import in test_ssl.
Patch by Mark Lawrence.
-rw-r--r-- | Lib/test/test_ssl.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_ssl.py b/Lib/test/test_ssl.py index 779b622..99a317a 100644 --- a/Lib/test/test_ssl.py +++ b/Lib/test/test_ssl.py @@ -18,7 +18,6 @@ import asyncore import weakref import platform import functools -from unittest import mock ssl = support.import_module("ssl") |