[issue45688] stdlib_module_names.h is missing _scproxy

2021-11-08 Thread STINNER Victor
STINNER Victor added the comment: On Python 3.11.0a2+, I now get: $ ./python -c 'import sys; print(len(sys.stdlib_module_names))' 304 One more module ;-) -- ___ Python tracker

[issue45688] stdlib_module_names.h is missing _scproxy

2021-11-08 Thread STINNER Victor
STINNER Victor added the comment: Oh right, Tools/scripts/generate_stdlib_module_names.py runs "./python setup.py -q build --list-module-names" which skips modules which are only built on specific platforms. On the Python CI, generate_stdlib_module_names.py is run on Linux. Nicely spotted,

[issue45688] stdlib_module_names.h is missing _scproxy

2021-11-02 Thread Guido van Rossum
Guido van Rossum added the comment: Thanks! -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue45688] stdlib_module_names.h is missing _scproxy

2021-11-02 Thread Christian Heimes
Change by Christian Heimes : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue45688] stdlib_module_names.h is missing _scproxy

2021-11-02 Thread Christian Heimes
Christian Heimes added the comment: New changeset b2ae63161926527e31b9a9071b38836ad88e9a92 by Miss Islington (bot) in branch '3.10': [3.10] bpo-45688: Add _scproxy to sys.stdlib_module_names (GH-29358) (GH-29361)

[issue45688] stdlib_module_names.h is missing _scproxy

2021-11-02 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 4.0 -> 5.0 pull_requests: +27621 pull_request: https://github.com/python/cpython/pull/29361 ___ Python tracker

[issue45688] stdlib_module_names.h is missing _scproxy

2021-11-02 Thread Christian Heimes
Christian Heimes added the comment: New changeset 34098991289cb3e8eec012fa0243f30b9709666f by Christian Heimes in branch 'main': bpo-45688: Add _scproxy to sys.stdlib_module_names (GH-29358) https://github.com/python/cpython/commit/34098991289cb3e8eec012fa0243f30b9709666f --

[issue45688] stdlib_module_names.h is missing _scproxy

2021-11-02 Thread Christian Heimes
Change by Christian Heimes : -- keywords: +patch pull_requests: +27618 stage: -> patch review pull_request: https://github.com/python/cpython/pull/29358 ___ Python tracker

[issue45688] stdlib_module_names.h is missing _scproxy

2021-11-02 Thread Christian Heimes
New submission from Christian Heimes : stdlib_module_names.h is missing the macOS specific module _scproxy. Guido ran into the problem in PR https://github.com/python/cpython/pull/29118 -- components: Build messages: 405495 nosy: christian.heimes, eric.snow, gvanrossum, vstinner