summaryrefslogtreecommitdiff
path: root/Python/import.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1991-06-24 22:30:42 +0000
committerGuido van Rossum <guido@python.org>1991-06-24 22:30:42 +0000
commitd6a15ada727e586dc7b2cce8115e65d0abb0d1aa (patch)
tree8088233a9c06c665d261f86046d0cf1ac5cea585 /Python/import.c
parent1e2293d1f713b8fd74233aa0f66bf413b7c4ff33 (diff)
downloadcpython-git-d6a15ada727e586dc7b2cce8115e65d0abb0d1aa.tar.gz
Generalize to macintosh.
Diffstat (limited to 'Python/import.c')
-rw-r--r--Python/import.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/Python/import.c b/Python/import.c
index a4995ea003..f62d1d266a 100644
--- a/Python/import.c
+++ b/Python/import.c
@@ -37,13 +37,9 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include "compile.h"
#include "ceval.h"
-#ifdef THINK_C
-#define macintosh
-#endif
-
/* Define pathname separator used in file names */
-#ifdef THINK_C
+#ifdef macintosh
#define SEP ':'
#endif