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_packaging failure when ssl is not available
Type: behavior Stage: needs patch
Components: Distutils2, Tests Versions: Python 3.3
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: tarek Nosy List: alexis, eric.araujo, pitrou, tarek, vstinner
Priority: high Keywords:

Created on 2011-05-19 16:22 by pitrou, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (2)
msg136303 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2011-05-19 16:22
I get the following failure when the ssl module is not available:

======================================================================
ERROR: test_https_connection (packaging.tests.test_command_upload_docs.UploadDocsTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/home/antoine/t/cpython/Lib/packaging/tests/test_command_upload_docs.py", line 151, in test_https_connection
    orig_https = upload_docs_mod.http.client.HTTPSConnection
AttributeError: 'module' object has no attribute 'HTTPSConnection'
msg136579 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2011-05-23 00:05
It looks like Tarek fixed this bug because I'm unable to reproduce it.
History
Date User Action Args
2022-04-11 14:57:17adminsetgithub: 56330
2011-05-23 00:05:04vstinnersetstatus: open -> closed

nosy: + vstinner
messages: + msg136579

resolution: fixed
2011-05-19 16:22:57pitroucreate