This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author eric.smith
Recipients docs@python, eric.smith, sam_b
Date 2018-04-23.10:08:13
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1524478093.99.0.682650639539.issue33340@psf.upfronthosting.co.za>
In-reply-to
Content
"built-in modules" has the specific meaning of modules that are compiled in to the python executable. It doesn't mean modules in the standard library.

See https://docs.python.org/3.6/library/sys.html#sys.builtin_module_names

Python 3.6.4 (default, Jan  7 2018, 15:53:53)
[GCC 6.4.0] on cygwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import sys
>>> sys.builtin_module_names
('_ast', '_codecs', '_collections', '_functools', '_imp', '_io', '_locale', '_operator', '_signal', '_sre', '_stat', '_string', '_symtable', '_thread', '_tracemalloc', '_warnings', '_weakref', 'atexit', 'builtins', 'errno', 'faulthandler', 'gc', 'itertools', 'marshal', 'posix', 'pwd', 'sys', 'time', 'xxsubtype', 'zipimport')
History
Date User Action Args
2018-04-23 10:08:14eric.smithsetrecipients: + eric.smith, docs@python, sam_b
2018-04-23 10:08:13eric.smithsetmessageid: <1524478093.99.0.682650639539.issue33340@psf.upfronthosting.co.za>
2018-04-23 10:08:13eric.smithlinkissue33340 messages
2018-04-23 10:08:13eric.smithcreate