zoukankan      html  css  js  c++  java
  • [TimLinux] Python3.6 异常继承关系

    Python3.6 异常继承结构

    object
    └── BaseException
        ├── Exception
        │   ├── ArithmeticError
        │   │   ├── FloatingPointError
        │   │   ├── OverflowError
        │   │   └── ZeroDivisionError
        │   ├── AssertionError
        │   ├── AttributeError
        │   ├── BufferError
        │   ├── EnvironmentError -> OSError
        │   ├── EOFError
        │   ├── ImportError
        │   │   └── ModuleNotFoundError
        │   ├── IOError -> OSError
        │   ├── LookupError
        │   │   ├── IndexError
        │   │   └── KeyError
        │   ├── MemoryError
        │   ├── NameError
        │   │   └── UnboundLocalError
        │   ├── OSError
        │   │   ├── BlockingIOError
        │   │   ├── ChildProcessError
        │   │   ├── ConnectionError
        │   │   │   ├── BrokenPipeError
        │   │   │   ├── ConnectionAbortedError
        │   │   │   ├── ConnectionRefusedError
        │   │   │   └── ConnectionResetError
        │   │   ├── FileExistsError
        │   │   ├── FileNotFoundError
        │   │   ├── InterruptedError
        │   │   ├── IsDirectoryError
        │   │   ├── NotADirectoryError
        │   │   ├── PermissionError
        │   │   ├── ProcessLookupError
        │   │   └── TimeoutError
        │   ├── ReferenceError
        │   ├── RuntimeError
        │   │   ├── NotImplementedError
        │   │   └── RecursionError
        │   ├── StopAsyncIteration
        │   ├── StopIteration
        │   ├── SyntaxError
        │   │   └── IndentationError
        │   │       └── TabError
        │   ├── SystemError
        │   ├── TypeError
        │   ├── ValueError
        │   │   └── UnicodeError
        │   │       ├── UnicodeDecodeError
        │   │       ├── UnicodeEncodeError
        │   │       └── UnicodeTranslateError
        │   └── Warning
        │       ├── BytesWarning
        │       ├── DeprecationWarning
        │       ├── FutureWarning
        │       ├── ImportWarning
        │       ├── PendingDeprecationWarning
        │       ├── ResourceWarning
        │       ├── RuntimeWarning
        │       ├── SyntaxWarning
        │       ├── UnicodeWarning
        │       └── UserWarning
        ├── GeneratorExit
        ├── KeyboardInterrupt
        └── SystemExit
  • 相关阅读:
    selenium之WebDriver API
    python开发之面试题
    python开发之协程
    Python爬虫
    Python基础
    Django-搭建win7虚拟环境-virtualenv
    Linux系列
    Python知识点
    Python知识点
    Python基础-生物信息:找出基因,生物学家使用字母A、C、T和G构成的字符串建模一个基因组。
  • 原文地址:https://www.cnblogs.com/timlinux/p/11801288.html
Copyright © 2011-2022 走看看