]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
don't use backslashes for continuation lines
authorGuido van Rossum <guido@python.org>
Thu, 10 Nov 1994 22:49:52 +0000 (22:49 +0000)
committerGuido van Rossum <guido@python.org>
Thu, 10 Nov 1994 22:49:52 +0000 (22:49 +0000)
Modules/newmodule.c

index aa5f77e1d5be026363cafcd6a99d5d47d1acbbb7..383ee4a65851df874c41f49990bf1644faf8a411 100644 (file)
@@ -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);