From: Guido van Rossum Date: Thu, 10 Nov 1994 22:49:52 +0000 (+0000) Subject: don't use backslashes for continuation lines X-Git-Tag: v1.1.1~8 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5e8e8327f86fb4a8a342ac184218aa3a3f7ad3e7;p=thirdparty%2FPython%2Fcpython.git don't use backslashes for continuation lines --- diff --git a/Modules/newmodule.c b/Modules/newmodule.c index aa5f77e1d5be..383ee4a65851 100644 --- a/Modules/newmodule.c +++ b/Modules/newmodule.c @@ -69,12 +69,12 @@ new_code(unused, args) if (!getargs(args, "(OOOOO)", &code, &consts, &names, &filename, &name)) { return NULL; - } else if (!is_stringobject(code) || !is_listobject(consts) || \ - !is_listobject(names) || !is_stringobject(filename) || \ + } else if (!is_stringobject(code) || !is_listobject(consts) || + !is_listobject(names) || !is_stringobject(filename) || !is_stringobject(name)) { - err_setstr(TypeError, "expected a string of compiled code, a list of constants, \ - a list of names used, a string filename, and a string name \ - as args"); + err_setstr(TypeError, +"expected a string of compiled code, a list of constants, \ +a list of names used, a string filename, and a string name as args"); return NULL; } return (object *)newcodeobject(code, consts, names, filename, name);