This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: test_ssl does not use mock
Type: behavior Stage: resolved
Components: Tests Versions: Python 3.4, Python 3.5
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: berker.peksag, python-dev, xdegaye
Priority: normal Keywords: patch

Created on 2014-02-13 11:48 by xdegaye, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
issue20617.diff BreamoreBoy, 2015-03-09 00:44 removes the redundant import
Messages (3)
msg211148 - (view) Author: Xavier de Gaye (xdegaye) * (Python triager) Date: 2014-02-13 11:48
The following line should be removed from test_ssl.py:

from unittest import mock
msg237962 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2015-03-12 16:50
New changeset 2b7cf33ccd74 by Berker Peksag in branch '3.4':
Issue #20617: Remove unused import in test_ssl.
https://hg.python.org/cpython/rev/2b7cf33ccd74

New changeset 07e8c0ae232c by Berker Peksag in branch 'default':
Issue #20617: Remove unused import in test_ssl.
https://hg.python.org/cpython/rev/07e8c0ae232c
msg237963 - (view) Author: Berker Peksag (berker.peksag) * (Python committer) Date: 2015-03-12 16:51
Thanks Xavier and Mark.
History
Date User Action Args
2022-04-11 14:57:58adminsetgithub: 64816
2015-03-12 16:51:29berker.peksagsetstatus: open -> closed

components: + Tests, - Library (Lib)
versions: + Python 3.4
nosy: + berker.peksag

messages: + msg237963
resolution: fixed
stage: resolved
2015-03-12 16:50:18python-devsetnosy: + python-dev
messages: + msg237962
2015-03-09 00:44:40BreamoreBoysetfiles: + issue20617.diff
keywords: + patch
versions: + Python 3.5, - Python 3.4
2014-02-13 11:48:24xdegayecreate