From 37832f0c8d02861f1171fc59e0e0cb5965dfecfb Mon Sep 17 00:00:00 2001 From: Jeremy Hylton Date: Fri, 13 Apr 2001 17:50:20 +0000 Subject: split long line --- Python/import.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Python/import.c b/Python/import.c index 7f49e57..bde49ce 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); -- cgit v0.12