]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
split long line
authorJeremy Hylton <jeremy@alum.mit.edu>
Fri, 13 Apr 2001 17:50:20 +0000 (17:50 +0000)
committerJeremy Hylton <jeremy@alum.mit.edu>
Fri, 13 Apr 2001 17:50:20 +0000 (17:50 +0000)
Python/import.c

index 7f49e57699355f953c78258efb598841c909a7ba..bde49ce91cb4d0bfcba29bb2eb188803dd4ae70e 100644 (file)
@@ -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);