diff options
Diffstat (limited to 'Python/importdl.c')
-rw-r--r-- | Python/importdl.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Python/importdl.c b/Python/importdl.c index 2abef33c0b..02f87dcce2 100644 --- a/Python/importdl.c +++ b/Python/importdl.c @@ -503,13 +503,16 @@ load_dynamic_module(name, pathname, fp) perror(funcname); } #endif /* hpux */ +#ifdef USE_SHLIB got_it: +#endif if (p == NULL) { err_setstr(ImportError, "dynamic module does not define init function"); return NULL; } (*p)(); + /* XXX Need check for err_occurred() here */ m = dictlookup(import_modules, name); if (m == NULL) { |