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_venv fails with --without-threads
Type: crash Stage: needs patch
Components: Versions: Python 3.4
process
Status: closed Resolution: duplicate
Dependencies: Superseder: test_venv: test_with_pip() failed on "AMD64 Fedora without threads 3.x" buildbot: urllib3 dependency requires the threading module
View: 19766
Assigned To: Nosy List: christian.heimes, dstufft, ncoghlan, vinay.sajip
Priority: high Keywords:

Created on 2013-12-08 00:24 by christian.heimes, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (1)
msg205503 - (view) Author: Christian Heimes (christian.heimes) * (Python committer) Date: 2013-12-08 00:24
The test fails when Python is compiled --without-threads. Two 3rd party modules import threading unconditionally:

pip/_vendor/distlib/util.py
  import threading

pip/_vendor/requests/packages/urllib3/_collections.py
  from threading import RLock
History
Date User Action Args
2022-04-11 14:57:55adminsetgithub: 64123
2013-12-08 02:23:47ncoghlansetstatus: open -> closed
superseder: test_venv: test_with_pip() failed on "AMD64 Fedora without threads 3.x" buildbot: urllib3 dependency requires the threading module
resolution: duplicate
2013-12-08 00:24:58christian.heimescreate