diff options
author | Jeremy Hylton <jeremy@alum.mit.edu> | 2001-04-13 17:50:20 (GMT) |
---|---|---|
committer | Jeremy Hylton <jeremy@alum.mit.edu> | 2001-04-13 17:50:20 (GMT) |
commit | 37832f0c8d02861f1171fc59e0e0cb5965dfecfb (patch) | |
tree | 8c316297f7750d8f2062f62c9d0d8796802401f0 /Python/import.c | |
parent | 0c4d468e39a32074299d85998cf6d9ba2201e728 (diff) | |
download | cpython-37832f0c8d02861f1171fc59e0e0cb5965dfecfb.zip cpython-37832f0c8d02861f1171fc59e0e0cb5965dfecfb.tar.gz cpython-37832f0c8d02861f1171fc59e0e0cb5965dfecfb.tar.bz2 |
split long line
Diffstat (limited to 'Python/import.c')
-rw-r--r-- | Python/import.c | 3 |
1 files changed, 2 insertions, 1 deletions
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); |