StopAsyncIterationStopAsyncIteration
Iteration पूर्ण होने पर async iterator के __anext__() method द्वारा raise किया जाता है।
BlockingIOErrorएक I/O operation non-blocking ऑब्जेक्ट पर block करेगा।
एक non-blocking socket या file descriptor ने ऐसा operation करने का प्रयास किया जो block करता। यह non-blocking I/O programming में अपेक्षित है और इंगित करता है कि operation तत्काल पूर्ण नहीं हो सकता।
I/O ऑब्जेक्ट के तैयार होने की प्रतीक्षा के लिए select(), poll(), या asyncio का उपयोग करें। async कोड में operation को await करें। आंशिक writes के लिए error के characters_written attribute की जाँच करें। non-blocking I/O संभालने वाले framework का उपयोग करें।
StopAsyncIterationIteration पूर्ण होने पर async iterator के __anext__() method द्वारा raise किया जाता है।
ValueErrorकिसी फ़ंक्शन को सही type का लेकिन अनुपयुक्त मान वाला argument मिला।
IndentationErrorCode में गलत indentation है, जो Python में वाक्य-रचनात्मक रूप से महत्वपूर्ण है।
BufferErrorbuffer ऑब्जेक्ट पर operation विफल हो गया।
SyntaxErrorPython को अमान्य syntax मिला जिसे parse नहीं किया जा सका।
TimeoutErrorblocking ऑपरेशन के दौरान सिस्टम-स्तर timeout हुआ।