[issue46365] _ curses module is not installed

2022-01-13 Thread Christian Heimes
Christian Heimes added the comment: That does not look like the full output. Did you omit lines? -- ___ Python tracker ___ ___

[issue46365] _ curses module is not installed

2022-01-13 Thread simon28li
simon28li added the comment: @christian.heimes root@ubuntu:/home/all_spack_env/spack_stage/root/spack-stage-python-3.8.8-qznik3f2b7fym4rm52tmsuma5w6jvfqo/spack-src/spack-build# make sharedmods

[issue46365] _ curses module is not installed

2022-01-13 Thread Christian Heimes
Christian Heimes added the comment: Please post the full output of ``make sharedmods``. -- nosy: +christian.heimes ___ Python tracker ___

[issue46279] [docs] Minor information-ordering issue in __main__ doc

2022-01-13 Thread Alex Waygood
Change by Alex Waygood : -- type: -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40479] Port _hashlib to OpenSSL 3.0.0

2022-01-13 Thread Christian Heimes
Change by Christian Heimes : -- pull_requests: +28774 pull_request: https://github.com/python/cpython/pull/30574 ___ Python tracker ___

[issue46365] _ curses module is not installed

2022-01-13 Thread Steven D'Aprano
Steven D'Aprano added the comment: Did you look in setup.py in detect_modules() for the module's name to see what was missing? How do you know the curses dependencies have been installed? What dependencies did you install? -- nosy: +steven.daprano

[issue46365] _ curses module is not installed

2022-01-13 Thread simon28li
simon28li added the comment: My system is Ubuntu 18.04.5 I am sure that nurses dependencies have been installed, and my other systems are normal, including centos, debian, etc. -- ___ Python tracker

[issue46365] _ curses module is not installed

2022-01-13 Thread simon28li
New submission from simon28li : Python build finished successfully! The necessary bits to build these optional modules were not found: _curses _curses_panel _tkinter To find the necessary bits, look in setup.py in detect_modules() for the module's name. --

[issue46361] Small ints aren't always cached properly

2022-01-13 Thread Mark Dickinson
Mark Dickinson added the comment: And there are some similar things going on in rangeobject.c. https://github.com/python/cpython/blob/1de60155d5d01be2924e72fb68dd13d4fd00acd7/Objects/rangeobject.c#L598 if (r->step == _PyLong_GetOne()) { return idx; } Again,

[issue40479] Port _hashlib to OpenSSL 3.0.0

2022-01-13 Thread Christian Heimes
Christian Heimes added the comment: New changeset 443b308fee088e21bbf472c376c5c9e3648f916c by Christian Heimes in branch 'main': bpo-40479: Fix hashlib's usedforsecurity for OpenSSL 3.0.0 (GH-30455) https://github.com/python/cpython/commit/443b308fee088e21bbf472c376c5c9e3648f916c

[issue40479] Port _hashlib to OpenSSL 3.0.0

2022-01-13 Thread miss-islington
Change by miss-islington : -- pull_requests: +28773 pull_request: https://github.com/python/cpython/pull/30573 ___ Python tracker ___

[issue46315] Add support for WebAssembly System Interface (wasm32-wasi)

2022-01-13 Thread Christian Heimes
Christian Heimes added the comment: New changeset a6ca8eee2254762422f90cf94fbaac34f85db780 by Christian Heimes in branch 'main': bpo-46315: Add ifdef HAVE_ feature checks for WASI compatibility (GH-30507) https://github.com/python/cpython/commit/a6ca8eee2254762422f90cf94fbaac34f85db780

[issue46363] Two typos in versions 3.7 document translation of zh_CN

2022-01-13 Thread Alex Waygood
Change by Alex Waygood : -- title: Two typos in verions 3.7 document translation of zh_CN -> Two typos in versions 3.7 document translation of zh_CN ___ Python tracker ___

[issue46361] Small ints aren't always cached properly

2022-01-13 Thread Mark Dickinson
Mark Dickinson added the comment: Hmm. This sort of thing is a little dodgy, though (despite the comment that it's "okay"): https://github.com/python/cpython/blob/1de60155d5d01be2924e72fb68dd13d4fd00acd7/Modules/mathmodule.c#L939 PyObject *zero = _PyLong_GetZero(); // borrowed ref

[issue46361] Small ints aren't always cached properly

2022-01-13 Thread Mark Dickinson
Mark Dickinson added the comment: I don't *think* we currently rely on small integers being cached anywhere in the implementation (and neither do we guarantee anywhere in the docs that small integers will be cached), so as far as I can tell these omissions shouldn't lead to user-visible

[issue46364] asyncio subprocess cannot read from /dev/stdin

2022-01-13 Thread Andrew Svetlov
Andrew Svetlov added the comment: True. Would you make a pull request that uses socketpair on AIX only? A test for desired behavior is required. -- ___ Python tracker ___

[issue46363] Two typos in verions 3.7 document translation of zh_CN

2022-01-13 Thread Alex Waygood
Change by Alex Waygood : -- type: -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue46364] asyncio subprocess cannot read from /dev/stdin

2022-01-13 Thread xoph
New submission from xoph : asyncio.create_subprocess_exec and asyncio.create_subprocess_shell fail with "No such device or address" when called on a program that attempts to invoke `/dev/stdin` on Linux. This happens in contrast to the subprocess module and was discussed in the this thread:

[issue46363] Two typos in verions 3.7 document translation of zh_CN

2022-01-13 Thread Irit Katriel
Irit Katriel added the comment: 3.7 is no longer maintained. Is this also in newer versions? Can you submit a pull request to fix it in the main branch? -- nosy: +iritkatriel ___ Python tracker

[issue46364] asyncio subprocess cannot read from /dev/stdin

2022-01-13 Thread xoph
Change by xoph : -- components: asyncio nosy: asvetlov, xoph, yselivanov priority: normal severity: normal status: open title: asyncio subprocess cannot read from /dev/stdin type: behavior ___ Python tracker

<    1   2