8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d22c35d commit 9e666bcCopy full SHA for 9e666bc
Doc/glossary.rst
@@ -210,6 +210,16 @@ Glossary
210
A list of bytecode instructions can be found in the documentation for
211
:ref:`the dis module <bytecodes>`.
212
213
+ callable
214
+ A callable is an object that can be called, possibly with a set
215
+ of arguments (see :term:`argument`), with the following syntax::
216
+
217
+ callable(argument1, argument2, ...)
218
219
+ A :term:`function`, and by extension a :term:`method`, is a callable.
220
+ An instance of a class that implements the :meth:`~object.__call__`
221
+ method is also a callable.
222
223
callback
224
A subroutine function which is passed as an argument to be executed at
225
some point in the future.
0 commit comments