“from __future__ import braces”代码在哪里?

时间:2014-01-14 22:21:01

标签: python python-2.7 python-internals

我想知道在命令上执行的代码究竟是什么:

>>> from __future__ import braces
SyntaxError: not a chance

所以,既然python是开源的,我打开C:\Python27\Lib\__future__.py并查看。 令人惊讶的是,我发现没有任何东西可以处理导入braces模块。

所以,我的问题是,处理这个问题的代码在哪里?当我运行该命令时会发生什么?

1 个答案:

答案 0 :(得分:65)

代码位于future.c

future_check_features(PyFutureFeatures *ff, stmt_ty s, const char *filename)
...
  else if (strcmp(feature, "braces") == 0) {
    PyErr_SetString(PyExc_SyntaxError,
        "not a chance");
    PyErr_SyntaxLocation(filename, s->lineno);
    return 0;
  }