django.core.exceptions.ImproperlyConfigureddjango.core.exceptions.ImproperlyConfigured
Django ने प्रोजेक्ट की settings में गलत कॉन्फ़िगरेशन का पता लगाया।
StopIterationIterator में कोई और items न होने पर next() function द्वारा raise किया जाता है।
आपने exhausted iterator पर next() call किया। Python iteration के अंत को signal करने के लिए इसी mechanism का उपयोग करता है। For-loops यह automatically catch करते हैं, लेकिन manual next() calls नहीं।
Default value प्रदान करें: next(iterator, default_value)। Manual next() calls की जगह for loop उपयोग करें। next() को try-except StopIteration में wrap करें। next() call से पहले iterator में items हैं यह जाँचें।
it = iter([]); next(it) # StopIterationdjango.core.exceptions.ImproperlyConfiguredDjango ने प्रोजेक्ट की settings में गलत कॉन्फ़िगरेशन का पता लगाया।
RuntimeErrorएक सामान्य रनटाइम त्रुटि जो किसी अन्य श्रेणी में नहीं आती।
ImportErrorImport statement निर्दिष्ट module या नाम खोजने या लोड करने में विफल रहा।
KeyErrorDictionary में एक key नहीं मिली।
IOErrorI/O operation विफल हुई। Python 3 में IOError, OSError का alias है।
requests.exceptions.Timeoutserver से response की प्रतीक्षा करते समय request timeout हो गई।