[issue35822] _queue _queuemodule.c is missing inside the Setup file

2019-02-20 Thread INADA Naoki
Change by INADA Naoki : -- resolution: -> rejected stage: -> resolved status: open -> closed ___ Python tracker ___ ___

[issue35822] _queue _queuemodule.c is missing inside the Setup file

2019-01-28 Thread INADA Naoki
INADA Naoki added the comment: _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

[issue35822] _queue _queuemodule.c is missing inside the Setup file

2019-01-24 Thread Igor Z
New submission from Igor Z : 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