Make tabs always 8 spaces wide -- it's more portable.
diff --git a/Parser/tokenizer.c b/Parser/tokenizer.c
index 3bd9530..1070d13 100644
--- a/Parser/tokenizer.c
+++ b/Parser/tokenizer.c
@@ -37,13 +37,8 @@
 #include "tokenizer.h"
 #include "errcode.h"
 
-#ifdef macintosh
-#define TABSIZE 4
-#endif
-
-#ifndef TABSIZE
+/* Don't ever change this -- it would break the portability of Python code */
 #define TABSIZE 8
-#endif
 
 /* Forward */
 static struct tok_state *tok_new PROTO((void));