[issue43456] Remove _xxsubinterpreters from sys.stdlib_module_names

2021-03-10 Thread STINNER Victor
STINNER Victor added the comment: > Thanks, Victor! And I will independently say that my use of > sys.stdlib_module_names suggests the list seems accurate(and is useful)! Well, it helps to define "what is the stdlib?" ;-) -- ___ Python tracker

[issue43456] Remove _xxsubinterpreters from sys.stdlib_module_names

2021-03-10 Thread Brett Cannon
Brett Cannon added the comment: Thanks, Victor! And I will independently say that my use of sys.stdlib_module_names suggests the list seems accurate(and is useful)! -- ___ Python tracker ___

[issue43456] Remove _xxsubinterpreters from sys.stdlib_module_names

2021-03-10 Thread STINNER Victor
Change by STINNER Victor : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ __

[issue43456] Remove _xxsubinterpreters from sys.stdlib_module_names

2021-03-10 Thread STINNER Victor
STINNER Victor added the comment: New changeset a9c03d7fb78ab79710f79190f0584a09d9fd1a61 by Victor Stinner in branch 'master': bpo-43456: Remove _xxsubinterpreters from sys.stdlib_module_names (GH-24814) https://github.com/python/cpython/commit/a9c03d7fb78ab79710f79190f0584a09d9fd1a61 -

[issue43456] Remove _xxsubinterpreters from sys.stdlib_module_names

2021-03-10 Thread STINNER Victor
STINNER Victor added the comment: With PR 24814, sys.stdlib_module_names contains 301 names: __future__ _abc _aix_support _ast _asyncio _bisect _blake2 _bootsubprocess _bz2 _codecs _codecs_cn _codecs_hk _codecs_iso2022 _codecs_jp _codecs_kr _codecs_tw _collections _collections_abc _compat_pick

[issue43456] Remove _xxsubinterpreters from sys.stdlib_module_names

2021-03-10 Thread STINNER Victor
STINNER Victor added the comment: > I noticed that _xxsubinterpreters is in sys.stdlib_module_names but none of > the other `_xx` modules are included (nor is 'test'). Since > _xxsubinterpreters is only meant for testing (ATM) I think it should probably > be left out. Oh right, I agree that

[issue43456] Remove _xxsubinterpreters from sys.stdlib_module_names

2021-03-10 Thread STINNER Victor
Change by STINNER Victor : -- keywords: +patch pull_requests: +23580 stage: -> patch review pull_request: https://github.com/python/cpython/pull/24814 ___ Python tracker ___ _

[issue43456] Remove _xxsubinterpreters from sys.stdlib_module_names

2021-03-09 Thread Brett Cannon
New submission from Brett Cannon : I noticed that _xxsubinterpreters is in sys.stdlib_module_names but none of the other `_xx` modules are included (nor is 'test'). Since _xxsubinterpreters is only meant for testing (ATM) I think it should probably be left out. -- components: Library