Update datamodel.rst

Remove incorrect statement: "math is a standard built-in module"
This commit is contained in:
Christopher Yeh 2020-06-13 16:36:28 -07:00 committed by GitHub
parent d71ab4f738
commit 91f3733c71
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 3 deletions

View File

@ -672,9 +672,8 @@ Callable types
pair: C; language
A built-in function object is a wrapper around a C function. Examples of
built-in functions are :func:`len` and :func:`math.sin` (:mod:`math` is a
standard built-in module). The number and type of the arguments are
determined by the C function. Special read-only attributes:
built-in functions are :func:`len` and :func:`math.sin`. The number and type of the
arguments are determined by the C function. Special read-only attributes:
:attr:`__doc__` is the function's documentation string, or ``None`` if
unavailable; :attr:`~definition.__name__` is the function's name; :attr:`__self__` is
set to ``None`` (but see the next item); :attr:`__module__` is the name of