We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f5c3838 commit 20b595eCopy full SHA for 20b595e
Python/bltinmodule.c
@@ -3016,7 +3016,14 @@ static PyMethodDef builtin_methods[] = {
3016
PyDoc_STRVAR(builtin_doc,
3017
"Built-in functions, exceptions, and other objects.\n\
3018
\n\
3019
-Noteworthy: None is the `nil' object; Ellipsis represents `...' in slices.");
+This module provides direct access to all 'built-in'\n\
3020
+identifiers of Python; for example, `builtins.open` is\n\
3021
+the full name for the built-in function `open()`.\n\
3022
+\n\
3023
+This module is not normally accessed explicitly by most\n\
3024
+applications, but can be useful in modules that provide\n\
3025
+objects with the same name as a built-in value, but in\n\
3026
+which the built-in of that name is also needed.");
3027
3028
static struct PyModuleDef builtinsmodule = {
3029
PyModuleDef_HEAD_INIT,
0 commit comments