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 15f4a35 commit 04e411eCopy full SHA for 04e411e
Doc/glossary.rst
@@ -203,6 +203,12 @@ 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 has the pointer :c:member:`~PyTypeObject.tp_call`
208
+ not ``NULL`` and set to a function. Python functions and object methods
209
+ are callables. An instance of a class that implements the :meth:`~object.__call__`
210
+ method is also a callable.
211
+
212
callback
213
A subroutine function which is passed as an argument to be executed at
214
some point in the future.
0 commit comments