django.core.exceptions.ImproperlyConfigureddjango.core.exceptions.ImproperlyConfigured
Django ने प्रोजेक्ट की settings में गलत कॉन्फ़िगरेशन का पता लगाया।
StopAsyncIterationIteration पूर्ण होने पर async iterator के __anext__() method द्वारा raise किया जाता है।
Async iterator में कोई और items नहीं हैं। यह StopIteration का async equivalent है। Async for-loops यह automatically handle करते हैं, लेकिन manual __anext__() calls में यह exception दिखेगी।
async for loops उपयोग करें जो यह automatically handle करते हैं। Manual __anext__() उपयोग करने पर इसे try-except StopAsyncIteration में wrap करें। Async generators के लिए sentinel value pattern प्रदान करें।
django.core.exceptions.ImproperlyConfiguredDjango ने प्रोजेक्ट की settings में गलत कॉन्फ़िगरेशन का पता लगाया।
IndexErrorएक sequence index दी गई sequence की वैध range से बाहर है।
FileNotFoundErrorनिर्दिष्ट file या directory मौजूद नहीं है।
ConnectionAbortedErrorConnection को स्थानीय मशीन द्वारा रद्द कर दिया गया।
BufferErrorbuffer ऑब्जेक्ट पर operation विफल हो गया।
IOErrorI/O operation विफल हुई। Python 3 में IOError, OSError का alias है।