mirror of
				https://github.com/python/cpython.git
				synced 2025-10-29 17:38:56 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			63 lines
		
	
	
	
		
			1.7 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			63 lines
		
	
	
	
		
			1.7 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
| BaseException
 | |
|  +-- SystemExit
 | |
|  +-- KeyboardInterrupt
 | |
|  +-- GeneratorExit
 | |
|  +-- Exception
 | |
|       +-- StopIteration
 | |
|       +-- StopAsyncIteration
 | |
|       +-- ArithmeticError
 | |
|       |    +-- FloatingPointError
 | |
|       |    +-- OverflowError
 | |
|       |    +-- ZeroDivisionError
 | |
|       +-- AssertionError
 | |
|       +-- AttributeError
 | |
|       +-- BufferError
 | |
|       +-- EOFError
 | |
|       +-- ImportError
 | |
|       +-- LookupError
 | |
|       |    +-- IndexError
 | |
|       |    +-- KeyError
 | |
|       +-- MemoryError
 | |
|       +-- NameError
 | |
|       |    +-- UnboundLocalError
 | |
|       +-- OSError
 | |
|       |    +-- BlockingIOError
 | |
|       |    +-- ChildProcessError
 | |
|       |    +-- ConnectionError
 | |
|       |    |    +-- BrokenPipeError
 | |
|       |    |    +-- ConnectionAbortedError
 | |
|       |    |    +-- ConnectionRefusedError
 | |
|       |    |    +-- ConnectionResetError
 | |
|       |    +-- FileExistsError
 | |
|       |    +-- FileNotFoundError
 | |
|       |    +-- InterruptedError
 | |
|       |    +-- IsADirectoryError
 | |
|       |    +-- NotADirectoryError
 | |
|       |    +-- PermissionError
 | |
|       |    +-- ProcessLookupError
 | |
|       |    +-- TimeoutError
 | |
|       +-- ReferenceError
 | |
|       +-- RuntimeError
 | |
|       |    +-- NotImplementedError
 | |
|       |    +-- RecursionError
 | |
|       +-- SyntaxError
 | |
|       |    +-- IndentationError
 | |
|       |         +-- TabError
 | |
|       +-- SystemError
 | |
|       +-- TypeError
 | |
|       +-- ValueError
 | |
|       |    +-- UnicodeError
 | |
|       |         +-- UnicodeDecodeError
 | |
|       |         +-- UnicodeEncodeError
 | |
|       |         +-- UnicodeTranslateError
 | |
|       +-- Warning
 | |
|            +-- DeprecationWarning
 | |
|            +-- PendingDeprecationWarning
 | |
|            +-- RuntimeWarning
 | |
|            +-- SyntaxWarning
 | |
|            +-- UserWarning
 | |
|            +-- FutureWarning
 | |
|            +-- ImportWarning
 | |
|            +-- UnicodeWarning
 | |
|            +-- BytesWarning
 | |
|            +-- ResourceWarning
 | 
