Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 37832f0

Browse files
committed
split long line
1 parent 0c4d468 commit 37832f0

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Python/import.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -729,7 +729,8 @@ load_source_module(char *name, char *pathname, FILE *fp)
729729
return NULL;
730730
}
731731
#endif
732-
cpathname = make_compiled_pathname(pathname, buf, (size_t)MAXPATHLEN+1);
732+
cpathname = make_compiled_pathname(pathname, buf,
733+
(size_t)MAXPATHLEN + 1);
733734
if (cpathname != NULL &&
734735
(fpc = check_compiled_module(pathname, mtime, cpathname))) {
735736
co = read_compiled_module(cpathname, fpc);

0 commit comments

Comments
 (0)