mirror of
				https://github.com/python/cpython.git
				synced 2025-11-03 03:22:27 +00:00 
			
		
		
		
	except when configured --with-pydebug. Emit this warning from the GC shutdown procedure, rather than just printing to stderr.
		
			
				
	
	
		
			50 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
BaseException
 | 
						|
 +-- SystemExit
 | 
						|
 +-- KeyboardInterrupt
 | 
						|
 +-- GeneratorExit
 | 
						|
 +-- Exception
 | 
						|
      +-- StopIteration
 | 
						|
      +-- ArithmeticError
 | 
						|
      |    +-- FloatingPointError
 | 
						|
      |    +-- OverflowError
 | 
						|
      |    +-- ZeroDivisionError
 | 
						|
      +-- AssertionError
 | 
						|
      +-- AttributeError
 | 
						|
      +-- BufferError
 | 
						|
      +-- EnvironmentError
 | 
						|
      |    +-- IOError
 | 
						|
      |    +-- OSError
 | 
						|
      |         +-- WindowsError (Windows)
 | 
						|
      |         +-- VMSError (VMS)
 | 
						|
      +-- EOFError
 | 
						|
      +-- ImportError
 | 
						|
      +-- LookupError
 | 
						|
      |    +-- IndexError
 | 
						|
      |    +-- KeyError
 | 
						|
      +-- MemoryError
 | 
						|
      +-- NameError
 | 
						|
      |    +-- UnboundLocalError
 | 
						|
      +-- ReferenceError
 | 
						|
      +-- RuntimeError
 | 
						|
      |    +-- NotImplementedError
 | 
						|
      +-- SyntaxError
 | 
						|
      |    +-- IndentationError
 | 
						|
      |         +-- TabError
 | 
						|
      +-- SystemError
 | 
						|
      +-- TypeError
 | 
						|
      +-- ValueError
 | 
						|
      |    +-- UnicodeError
 | 
						|
      |         +-- UnicodeDecodeError
 | 
						|
      |         +-- UnicodeEncodeError
 | 
						|
      |         +-- UnicodeTranslateError
 | 
						|
      +-- Warning
 | 
						|
           +-- DeprecationWarning
 | 
						|
           +-- PendingDeprecationWarning
 | 
						|
           +-- RuntimeWarning
 | 
						|
           +-- SyntaxWarning
 | 
						|
           +-- UserWarning
 | 
						|
           +-- FutureWarning
 | 
						|
           +-- ImportWarning
 | 
						|
           +-- UnicodeWarning
 | 
						|
           +-- BytesWarning
 | 
						|
           +-- ResourceWarning
 |