no-get-exception

我们创建了一个函数,ansible.module_utils.pycompat24.get_exception,以帮助以兼容 Python 2.4 到 Python 3.6 的方式检索异常。我们不再支持 Python 2.4 和 Python 2.5,因此这是多余的,我们希望弃用此函数。代码移植应如下所示:

# Unfixed code:
try:
    raise IOError('test')
except IOError:
    e = get_exception()
    do_something(e)
except:
    e = get_exception()
    do_something_else(e)

# After fixing:
try:
    raise IOError('test')
except IOErrors as e:
    do_something(e)
except Exception as e:
    do_something_else(e)