summaryrefslogtreecommitdiff
path: root/Python/traceback.c
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2003-11-19 15:24:47 +0000
committerJack Jansen <jack.jansen@cwi.nl>2003-11-19 15:24:47 +0000
commite34f184cf8f15384ead96d31f53ae8ab83e328e5 (patch)
tree78e9990e5b905c9710b8d61202cc2ce7f2c6600a /Python/traceback.c
parent1f208bf24cd36ad108eac3a91ee2b163e501ecf8 (diff)
downloadcpython-e34f184cf8f15384ead96d31f53ae8ab83e328e5.tar.gz
Getting rid of support for the ancient Apple MPW compiler.
Diffstat (limited to 'Python/traceback.c')
-rw-r--r--Python/traceback.c5
1 files changed, 0 insertions, 5 deletions
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 */