Jack Jansen: Removed Macintosh tab-guessing code

This commit is contained in:
Guido van Rossum 2000-06-28 20:54:53 +00:00
parent b7c298f806
commit 6b7a5d8959
1 changed files with 0 additions and 7 deletions

View File

@ -109,13 +109,6 @@ PyParser_ParseFile(fp, filename, g, start, ps1, ps2, err_ret)
tok->alterror++;
}
#ifdef macintosh
{
int tabsize = guesstabsize(filename);
if (tabsize > 0)
tok->tabsize = tabsize;
}
#endif
return parsetok(tok, g, start, err_ret);
}