Issue 35822: _queue _queuemodule.c is missing inside the Setup file (original) (raw)

Issue35822

Created on 2019-01-25 00:08 by Igor Z, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Messages (2)
msg334329 - (view) Author: Igor Z (Igor Z) Date: 2019-01-25 00:08
I had to install manually new urllib3 (zip archive) module inside python 3.7 and got and error that module "_queue" is missing. I did not find anything related to such module inside the Setup file. Then I found this module in the github and manually added: _queue _queuemodule.c and did "make" once again to get new "libpython3.7m.so.1.0" that I needed for the project. The problem was solved.
msg334459 - (view) Author: Inada Naoki (methane) * (Python committer) Date: 2019-01-28 11:39
_queue is normal extension module, not builtin module. In my environment: >>> import _queue >>> _queue.__file__ '/usr/local/Cellar/python/3.7.2_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/lib-dynload/_queue.cpython-37m-darwin.so' It seems your environment is somewhat broken.
History
Date User Action Args
2022-04-11 14:59:10 admin set github: 80003
2019-02-21 06:34:58 methane set status: open -> closedresolution: rejectedstage: resolved
2019-01-28 11:39:12 methane set nosy: + methanemessages: +
2019-01-25 00:08:52 Igor Z create