TypeError: object is not callableTypeError: object is not callable
एक non-function object को parentheses () के साथ कॉल किया गया।
ExceptionGroupकई exceptions का container, Python 3.11 में structured concurrency के लिए पेश किया गया।
कई concurrent tasks ने एक साथ exceptions उठाए। ExceptionGroup उन्हें एक साथ bundleकरता है, जो सामान्यतः asyncio.TaskGroup और समानांतर operations से कई errors संभालने के लिए except* syntax के साथ उपयोग होता है।
group के भीतर विशिष्ट exception types संभालने के लिए except* syntax (Python 3.11+) का उपयोग करें। व्यक्तिगत errors देखने के लिए .exceptions access करें। Python < 3.11 के लिए exceptiongroup backport का उपयोग करें।
TypeError: object is not callableएक non-function object को parentheses () के साथ कॉल किया गया।
AttributeErrorकिसी ऑब्जेक्ट में अनुरोधित attribute या method नहीं है।
DeprecationWarningकिसी deprecated feature के बारे में चेतावनी जो भविष्य के संस्करण में हटाई जाएगी।
concurrent.futures.TimeoutErrorएक Future निर्दिष्ट timeout अवधि के भीतर पूर्ण नहीं हुआ।
KeyboardInterruptउपयोगकर्ता ने चल रहे प्रोग्राम को बाधित करने के लिए Ctrl+C दबाया।
RuntimeErrorएक सामान्य रनटाइम त्रुटि जो किसी अन्य श्रेणी में नहीं आती।