Update datamodel.rst
Remove incorrect statement: "math is a standard built-in module"
This commit is contained in:
parent
d71ab4f738
commit
91f3733c71
|
@ -672,9 +672,8 @@ Callable types
|
||||||
pair: C; language
|
pair: C; language
|
||||||
|
|
||||||
A built-in function object is a wrapper around a C function. Examples of
|
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
|
built-in functions are :func:`len` and :func:`math.sin`. The number and type of the
|
||||||
standard built-in module). The number and type of the arguments are
|
arguments are determined by the C function. Special read-only attributes:
|
||||||
determined by the C function. Special read-only attributes:
|
|
||||||
:attr:`__doc__` is the function's documentation string, or ``None`` if
|
:attr:`__doc__` is the function's documentation string, or ``None`` if
|
||||||
unavailable; :attr:`~definition.__name__` is the function's name; :attr:`__self__` is
|
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
|
set to ``None`` (but see the next item); :attr:`__module__` is the name of
|
||||||
|
|
Loading…
Reference in New Issue