TypeError: object is not callableTypeError: object is not callable
An object that is not a function was called with parentheses ().
ExceptionGroupA container for multiple exceptions, introduced in Python 3.11 for structured concurrency.
Multiple concurrent tasks raised exceptions simultaneously. The ExceptionGroup bundles them together, commonly used with asyncio.TaskGroup and the except* syntax for handling multiple errors from parallel operations.
Use the except* syntax (Python 3.11+) to handle specific exception types within the group. Access .exceptions to inspect individual errors. Use exceptiongroup backport for Python < 3.11.
TypeError: object is not callableAn object that is not a function was called with parentheses ().
AttributeErrorAn object does not have the requested attribute or method.
DeprecationWarningA warning about a deprecated feature that will be removed in a future version.
concurrent.futures.TimeoutErrorA Future did not complete within the specified timeout period.
KeyboardInterruptThe user pressed Ctrl+C to interrupt the running program.
RuntimeErrorA generic runtime error that does not fall into any other category.