作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
根据 sys.exit
上的文档和 SystemExit
, 看来
def sys.exit(return_value=None): # or return_value=0
raise SystemExit(return_value)
这是正确的还是 sys.exit
之前做了其他事情?
最佳答案
根据 Python/sysmodule.c
, 引发 SystemExit
就是它所做的一切。
static PyObject *
sys_exit(PyObject *self, PyObject *args)
{
PyObject *exit_code = 0;
if (!PyArg_UnpackTuple(args, "exit", 0, 1, &exit_code))
return NULL;
/* Raise SystemExit so callers may catch it or clean up. */
PyErr_SetObject(PyExc_SystemExit, exit_code);
return NULL;
}
关于python - sys.exit 是否等同于引发 SystemExit?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36302165/
判断这2个相似的Uris实际上相同的标准方法是什么? var a = new Uri("http://sample.com/sample/"); var b = new Uri("http://sam
这个问题在这里已经有了答案: Why does "true" == true show false in JavaScript? (5 个答案) 关闭 5 年前。 可能我很困惑,但我无法理解这个愚蠢
我是一名优秀的程序员,十分优秀!