Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Doc/glossary.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Glossary
.. if you add new entries, keep the alphabetical sorting!

.. glossary::
:sorted:

``>>>``
The default Python prompt of the :term:`interactive` shell. Often
Expand Down Expand Up @@ -565,6 +566,7 @@ Glossary
Also see :ref:`annotations-howto`
for best practices on working with annotations.

future statement
__future__
A :ref:`future statement <future>`, ``from __future__ import <feature>``,
directs the compiler to compile the current module using syntax or
Expand Down Expand Up @@ -1231,6 +1233,7 @@ Glossary
An acronym for the "read–eval–print loop", another name for the
:term:`interactive` interpreter shell.

slots declaration
__slots__
A declaration inside a class that saves memory by pre-declaring space for
instance attributes and eliminating instance dictionaries. Though
Expand Down
Loading