summaryrefslogtreecommitdiffstats
path: root/Python/importdl.c
diff options
context:
space:
mode:
Diffstat (limited to 'Python/importdl.c')
-rw-r--r--Python/importdl.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/Python/importdl.c b/Python/importdl.c
index 3b43bbc..a40d084 100644
--- a/Python/importdl.c
+++ b/Python/importdl.c
@@ -898,6 +898,7 @@ aix_getoldmodules(modlistptr)
register char *ldibuf;
register int errflag, bufsize = 1024;
register unsigned int offset;
+ char *progname = Py_GetProgramName();
/*
-- Get the list of loaded modules into ld_info structures.
@@ -925,11 +926,13 @@ aix_getoldmodules(modlistptr)
ldiptr = (struct ld_info *)ldibuf;
prevmodptr = NULL;
do {
- if (strstr(ldiptr->ldinfo_filename, "python") == NULL) {
+ if (strstr(progname, ldiptr->ldinfo_filename) == NULL &&
+ strstr(ldiptr->ldinfo_filename, "python") == NULL) {
/*
- -- Extract only the modules containing "python" as a
- -- substring, like the "python[version]" executable or
- -- "libpython[version].a" in case python is embedded.
+ -- Extract only the modules belonging to the main
+ -- executable + those containing "python" as a
+ -- substring (like the "python[version]" binary or
+ -- "libpython[version].a" in case it's a shared lib).
*/
offset = (unsigned int)ldiptr->ldinfo_next;
ldiptr = (struct ld_info *)((unsigned int)