File tree 1 file changed +9
-2
lines changed
1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -2999,9 +2999,16 @@ static PyMethodDef builtin_methods[] = {
2999
2999
};
3000
3000
3001
3001
PyDoc_STRVAR (builtin_doc ,
3002
- "Built-in functions, exceptions, and other objects.\n\
3002
+ "Built-in functions, types, exceptions, and other objects.\n\
3003
3003
\n\
3004
- Noteworthy: None is the `nil' object; Ellipsis represents `...' in slices." );
3004
+ This module provides direct access to all 'built-in'\n\
3005
+ identifiers of Python; for example, builtins.len is\n\
3006
+ the full name for the built-in function len().\n\
3007
+ \n\
3008
+ This module is not normally accessed explicitly by most\n\
3009
+ applications, but can be useful in modules that provide\n\
3010
+ objects with the same name as a built-in value, but in\n\
3011
+ which the built-in of that name is also needed." );
3005
3012
3006
3013
static struct PyModuleDef builtinsmodule = {
3007
3014
PyModuleDef_HEAD_INIT ,
You can’t perform that action at this time.
0 commit comments