diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-02-10 12:23:10 +0200 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-02-10 12:23:10 +0200 |
commit | 82ad4d2a8d5b7b3147af9cf6406fca37d493e6ee (patch) | |
tree | e4b2b7b79a8e257d41454a4177c6b159662cdf2c /Python/dynload_os2.c | |
parent | 0ba8d62bdc6fbc0216a3c220bc60efcf99d60195 (diff) | |
parent | 09e8e10bfc906c3611b1fd7684614b49527c2ba7 (diff) | |
download | cpython-82ad4d2a8d5b7b3147af9cf6406fca37d493e6ee.tar.gz |
Issue #6975: os.path.realpath() now correctly resolves multiple nested symlinks on POSIX platforms.
Diffstat (limited to 'Python/dynload_os2.c')
-rw-r--r-- | Python/dynload_os2.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/Python/dynload_os2.c b/Python/dynload_os2.c index 101c024bbe..0e1b907b8c 100644 --- a/Python/dynload_os2.c +++ b/Python/dynload_os2.c @@ -9,13 +9,9 @@ #include "importdl.h" -const struct filedescr _PyImport_DynLoadFiletab[] = { - {".pyd", "rb", C_EXTENSION}, - {".dll", "rb", C_EXTENSION}, - {0, 0} -}; +const char *_PyImport_DynLoadFiletab[] = {".pyd", ".dll", NULL}; -dl_funcptr _PyImport_GetDynLoadFunc(const char *fqname, const char *shortname, +dl_funcptr _PyImport_GetDynLoadFunc(const char *shortname, const char *pathname, FILE *fp) { dl_funcptr p; |