From cb41b2766de646435743b6af7dd152751b54e73f Mon Sep 17 00:00:00 2001 From: INADA Naoki Date: Thu, 23 Feb 2017 00:31:59 +0900 Subject: bpo-29463: Add docstring field to some AST nodes. (#46) * bpo-29463: Add docstring field to some AST nodes. ClassDef, ModuleDef, FunctionDef, and AsyncFunctionDef has docstring field for now. It was first statement of there body. * fix document. thanks travis! * doc fixes --- Python/future.c | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) (limited to 'Python/future.c') diff --git a/Python/future.c b/Python/future.c index 9c1f43032a..5cb21ac61c 100644 --- a/Python/future.c +++ b/Python/future.c @@ -61,7 +61,6 @@ static int future_parse(PyFutureFeatures *ff, mod_ty mod, PyObject *filename) { int i, done = 0, prev_line = 0; - stmt_ty first; if (!(mod->kind == Module_kind || mod->kind == Interactive_kind)) return 1; @@ -77,16 +76,7 @@ future_parse(PyFutureFeatures *ff, mod_ty mod, PyObject *filename) but is preceded by a regular import. */ - i = 0; - first = (stmt_ty)asdl_seq_GET(mod->v.Module.body, i); - if (first->kind == Expr_kind - && (first->v.Expr.value->kind == Str_kind - || (first->v.Expr.value->kind == Constant_kind - && PyUnicode_CheckExact(first->v.Expr.value->v.Constant.value)))) - i++; - - - for (; i < asdl_seq_LEN(mod->v.Module.body); i++) { + for (i = 0; i < asdl_seq_LEN(mod->v.Module.body); i++) { stmt_ty s = (stmt_ty)asdl_seq_GET(mod->v.Module.body, i); if (done && s->lineno > prev_line) -- cgit v1.2.1