diff options
author | Pierre Glaser <pierreglaser@msn.com> | 2019-02-07 19:36:48 (GMT) |
---|---|---|
committer | Antoine Pitrou <pitrou@free.fr> | 2019-02-07 19:36:48 (GMT) |
commit | df8d2cde63c865446468351f8f648e1c7bd45109 (patch) | |
tree | 1cc555d57319990602a4987cbf21ee225c4ff2a1 /Doc/reference | |
parent | f289084c83190cc72db4a70c58f007ec62e75247 (diff) | |
download | cpython-df8d2cde63c865446468351f8f648e1c7bd45109.zip cpython-df8d2cde63c865446468351f8f648e1c7bd45109.tar.gz cpython-df8d2cde63c865446468351f8f648e1c7bd45109.tar.bz2 |
bpo-35911: add cell constructor (GH-11771)
Add a cell constructor, expose the cell type in the types module.
Diffstat (limited to 'Doc/reference')
-rw-r--r-- | Doc/reference/datamodel.rst | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst index 83e1d23..9961aee 100644 --- a/Doc/reference/datamodel.rst +++ b/Doc/reference/datamodel.rst @@ -539,7 +539,9 @@ Callable types the value of the cell, as well as set the value. Additional information about a function's definition can be retrieved from its - code object; see the description of internal types below. + code object; see the description of internal types below. The + :data:`cell <types.CellType>` type can be accessed in the :mod:`types` + module. Instance methods .. index:: |