summaryrefslogtreecommitdiffstats
path: root/Python/import.c
diff options
context:
space:
mode:
Diffstat (limited to 'Python/import.c')
-rw-r--r--Python/import.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/Python/import.c b/Python/import.c
index 4a4c3d4..94ae984 100644
--- a/Python/import.c
+++ b/Python/import.c
@@ -857,8 +857,6 @@ imp_load_compiled(self, args)
if (fp == NULL)
return NULL;
m = load_compiled_module(name, pathname, fp);
- if (fob == NULL)
- fclose(fp);
return m;
}
@@ -877,8 +875,6 @@ imp_load_dynamic(self, args)
if (fob)
fp = get_file(pathname, fob, "r");
m = load_dynamic_module(name, pathname, fp);
- if (fob == NULL)
- fclose(fp);
return m;
}
@@ -898,8 +894,6 @@ imp_load_source(self, args)
if (fp == NULL)
return NULL;
m = load_source_module(name, pathname, fp);
- if (fob == NULL)
- fclose(fp);
return m;
}