diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2002-12-16 13:16:25 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2002-12-16 13:16:25 (GMT) |
commit | c389ec8d55efe0a812906ec68cf5c690290b3428 (patch) | |
tree | 378f8fe5b4e49fe1ee7b27c485ea91c257dcb196 /Python | |
parent | d5ae01a8037d5cba917aef531a3281760e82ed77 (diff) | |
download | cpython-c389ec8d55efe0a812906ec68cf5c690290b3428.zip cpython-c389ec8d55efe0a812906ec68cf5c690290b3428.tar.gz cpython-c389ec8d55efe0a812906ec68cf5c690290b3428.tar.bz2 |
Got rid of old (non-carbon-ppc and even cfm68k) file extensions for
extension modules.
Diffstat (limited to 'Python')
-rw-r--r-- | Python/dynload_mac.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/Python/dynload_mac.c b/Python/dynload_mac.c index bb5f4fb..6b50b16 100644 --- a/Python/dynload_mac.c +++ b/Python/dynload_mac.c @@ -17,15 +17,7 @@ const struct filedescr _PyImport_DynLoadFiletab[] = { {".slb", "rb", C_EXTENSION}, -#ifdef __CFM68K__ - {".CFM68K.slb", "rb", C_EXTENSION}, -#else -#if TARGET_API_MAC_CARBON {".carbon.slb", "rb", C_EXTENSION}, -#else - {".ppc.slb", "rb", C_EXTENSION}, -#endif -#endif {0, 0} }; |