Closed
Description
>>> import builtins
>>> print(builtins.__doc__)
Built-in functions, exceptions, and other objects.
Noteworthy: None is the `nil' object; Ellipsis represents `...' in slices.
>>>
A few possible improvements:
None
is not actually in the builtins module, as it's a keywordEllipsis
has more uses than just slices- The docstring doesn't explain what "builtins" means. It should say that this module is special in that its namespace is always available, or something along those lines.