From fb2765666f23434061e5def1aa8392797edf1f43 Mon Sep 17 00:00:00 2001 From: Jack Jansen Date: Wed, 19 Nov 2003 15:24:47 +0000 Subject: Getting rid of support for the ancient Apple MPW compiler. --- Python/traceback.c | 5 ----- 1 file changed, 5 deletions(-) (limited to 'Python/traceback.c') diff --git a/Python/traceback.c b/Python/traceback.c index b8edf13964..987013ccf5 100644 --- a/Python/traceback.c +++ b/Python/traceback.c @@ -147,13 +147,8 @@ tb_displayline(PyObject *f, char *filename, int lineno, char *name) int i; if (filename == NULL || name == NULL) return -1; -#ifdef MPW - /* This is needed by MPW's File and Line commands */ -#define FMT " File \"%.500s\"; line %d # in %.500s\n" -#else /* This is needed by Emacs' compile command */ #define FMT " File \"%.500s\", line %d, in %.500s\n" -#endif xfp = fopen(filename, "r" PY_STDIOTEXTMODE); if (xfp == NULL) { /* Search tail of filename in sys.path before giving up */ -- cgit v1.2.1