mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
Moved mac-specific speedup to a different place (Jack)
This commit is contained in:
parent
ac1fc95c3c
commit
9a61dc90e2
1 changed files with 5 additions and 5 deletions
|
@ -709,11 +709,6 @@ find_module(name, path, buf, buflen, p_fp)
|
|||
#endif
|
||||
)
|
||||
buf[len++] = SEP;
|
||||
#ifdef macintosh
|
||||
fdp = PyMac_FindModuleExtension(buf, &len, name);
|
||||
if ( fdp )
|
||||
fp = fopen(buf, fdp->mode);
|
||||
#else
|
||||
#ifdef IMPORT_8x3_NAMES
|
||||
/* see if we are searching in directory dos_8x3 */
|
||||
if (len > 7 && !strncmp(buf + len - 8, "dos_8x3", 7)){
|
||||
|
@ -740,6 +735,11 @@ find_module(name, path, buf, buflen, p_fp)
|
|||
#else
|
||||
/* XXX How are you going to test for directories? */
|
||||
#endif
|
||||
#ifdef macintosh
|
||||
fdp = PyMac_FindModuleExtension(buf, &len, name);
|
||||
if (fdp)
|
||||
fp = fopen(buf, fdp->mode);
|
||||
#else
|
||||
for (fdp = _PyImport_Filetab; fdp->suffix != NULL; fdp++) {
|
||||
strcpy(buf+len, fdp->suffix);
|
||||
if (Py_VerboseFlag > 1)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue