don't use backslashes for continuation lines
This commit is contained in:
parent
132f5c2d77
commit
5e8e8327f8
@ -69,12 +69,12 @@ new_code(unused, args)
|
|||||||
|
|
||||||
if (!getargs(args, "(OOOOO)", &code, &consts, &names, &filename, &name)) {
|
if (!getargs(args, "(OOOOO)", &code, &consts, &names, &filename, &name)) {
|
||||||
return NULL;
|
return NULL;
|
||||||
} else if (!is_stringobject(code) || !is_listobject(consts) || \
|
} else if (!is_stringobject(code) || !is_listobject(consts) ||
|
||||||
!is_listobject(names) || !is_stringobject(filename) || \
|
!is_listobject(names) || !is_stringobject(filename) ||
|
||||||
!is_stringobject(name)) {
|
!is_stringobject(name)) {
|
||||||
err_setstr(TypeError, "expected a string of compiled code, a list of constants, \
|
err_setstr(TypeError,
|
||||||
a list of names used, a string filename, and a string name \
|
"expected a string of compiled code, a list of constants, \
|
||||||
as args");
|
a list of names used, a string filename, and a string name as args");
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
return (object *)newcodeobject(code, consts, names, filename, name);
|
return (object *)newcodeobject(code, consts, names, filename, name);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user