mirror of
https://github.com/python/cpython.git
synced 2025-12-15 21:44:50 +00:00
Getting rid of all the code inside #ifdef macintosh too.
This commit is contained in:
parent
4bae2d5e46
commit
eddc1449ba
19 changed files with 6 additions and 458 deletions
|
|
@ -92,14 +92,6 @@ PyOS_InterruptOccurred(void)
|
|||
#endif /* MSDOS && !QUICKWIN */
|
||||
|
||||
|
||||
#ifdef macintosh
|
||||
|
||||
/* The Mac interrupt code has moved to macglue.c */
|
||||
#define OK
|
||||
|
||||
#endif /* macintosh */
|
||||
|
||||
|
||||
#ifndef OK
|
||||
|
||||
/* Default version -- for real operating systems and for Standard C */
|
||||
|
|
|
|||
|
|
@ -153,15 +153,6 @@ Py_FatalError(const char *msg)
|
|||
Py_Exit(1);
|
||||
}
|
||||
|
||||
#ifdef macintosh
|
||||
/* ARGSUSED */
|
||||
int
|
||||
guesstabsize(char *path)
|
||||
{
|
||||
return 4;
|
||||
}
|
||||
#endif
|
||||
|
||||
/* No-nonsense my_readline() for tokenizer.c */
|
||||
|
||||
char *
|
||||
|
|
|
|||
|
|
@ -784,7 +784,6 @@ tok_nextc(register struct tok_state *tok)
|
|||
done = tok->inp[-1] == '\n';
|
||||
}
|
||||
tok->cur = tok->buf + cur;
|
||||
#ifndef macintosh
|
||||
/* replace "\r\n" with "\n" */
|
||||
/* For Mac we leave the \r, giving a syntax error */
|
||||
pt = tok->inp - 2;
|
||||
|
|
@ -793,7 +792,6 @@ tok_nextc(register struct tok_state *tok)
|
|||
*pt = '\0';
|
||||
tok->inp = pt;
|
||||
}
|
||||
#endif
|
||||
}
|
||||
if (tok->done != E_OK) {
|
||||
if (tok->prompt != NULL)
|
||||
|
|
@ -1185,15 +1183,6 @@ tok_get(register struct tok_state *tok, char **p_start, char **p_end)
|
|||
return NEWLINE;
|
||||
}
|
||||
|
||||
#ifdef macintosh
|
||||
if (c == '\r') {
|
||||
PySys_WriteStderr(
|
||||
"File contains \\r characters (incorrect line endings?)\n");
|
||||
tok->done = E_TOKEN;
|
||||
tok->cur = tok->inp;
|
||||
return ERRORTOKEN;
|
||||
}
|
||||
#endif
|
||||
/* Period or number starting with period? */
|
||||
if (c == '.') {
|
||||
c = tok_nextc(tok);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue