[issue45189] Drop the "list_frozen" command from _test_embed.

2021-12-27 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset 196b53eb1e62871ca80dee180e4891b4dd5c52ac by Dong-hee Na in branch 'main': bpo-45189: Drop the "list_frozen" command from _test_embed. (GH-30273) https://github.com/python/cpython/commit/196b53eb1e62871ca80dee180e4891b4dd5c52ac -- stage: p

[issue45189] Drop the "list_frozen" command from _test_embed.

2021-12-27 Thread Dong-hee Na
Change by Dong-hee Na : -- stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailin

[issue45189] Drop the "list_frozen" command from _test_embed.

2021-12-27 Thread Dong-hee Na
Change by Dong-hee Na : -- keywords: +patch nosy: +corona10 nosy_count: 2.0 -> 3.0 pull_requests: +28488 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/30273 ___ Python tracker

[issue45189] Drop the "list_frozen" command from _test_embed.

2021-09-15 Thread STINNER Victor
STINNER Victor added the comment: I found a new _imp._frozen_module_names() function: $ ./python Python 3.11.0a0 (heads/main:1afc7b3219, Sep 15 2021, 10:22:28) [GCC >>> import _imp; _imp._frozen_module_names() ['_frozen_importlib', '_frozen_importlib_external', 'zipimport'] --

[issue45189] Drop the "list_frozen" command from _test_embed.

2021-09-14 Thread Eric Snow
Eric Snow added the comment: Yeah, sorry, I got the PRs mixed up. I added it in https://github.com/python/cpython/pull/28320. _imp._get_frozen_module_names() should work just fine. -- ___ Python tracker _

[issue45189] Drop the "list_frozen" command from _test_embed.

2021-09-13 Thread STINNER Victor
STINNER Victor added the comment: imp._get_frozen_module_names() doesn't exist. I cannot see it in GH-28319. Moreover, the imp module is now deprecated. If something is added, it should be added to the private _imp module. -- ___ Python tracker <

[issue45189] Drop the "list_frozen" command from _test_embed.

2021-09-13 Thread Eric Snow
New submission from Eric Snow : In Programs/_test_embed.c the "list_frozen" command prints out the name of each frozen module (defined in Python/frozen.c). The only place this is used is in Tools/scripts/generate_stdlib_module_names.py (in list_frozen()). That script can be updated to call