We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61e24f3 commit 37d1659Copy full SHA for 37d1659
Doc/glossary.rst
@@ -203,6 +203,16 @@ Glossary
203
A list of bytecode instructions can be found in the documentation for
204
:ref:`the dis module <bytecodes>`.
205
206
+ callable
207
+ A callable is an object that can be called, possibly with a set
208
+ of arguments (see :term:`argument`), with the following syntax::
209
+
210
+ callable(argument1, argument2, ...)
211
212
+ A :term:`function`, and by extension a :term:`method`, is a callable.
213
+ An instance of a class that implements the :meth:`~object.__call__`
214
+ method is also a callable.
215
216
callback
217
A subroutine function which is passed as an argument to be executed at
218
some point in the future.
0 commit comments