From: Jeremy Hylton Date: Fri, 13 Apr 2001 17:50:20 +0000 (+0000) Subject: split long line X-Git-Tag: v2.1c1~6 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=37832f0c8d02861f1171fc59e0e0cb5965dfecfb;p=thirdparty%2FPython%2Fcpython.git split long line --- diff --git a/Python/import.c b/Python/import.c index 7f49e5769935..bde49ce91cb4 100644 --- a/Python/import.c +++ b/Python/import.c @@ -729,7 +729,8 @@ load_source_module(char *name, char *pathname, FILE *fp) return NULL; } #endif - cpathname = make_compiled_pathname(pathname, buf, (size_t)MAXPATHLEN+1); + cpathname = make_compiled_pathname(pathname, buf, + (size_t)MAXPATHLEN + 1); if (cpathname != NULL && (fpc = check_compiled_module(pathname, mtime, cpathname))) { co = read_compiled_module(cpathname, fpc);