Commit 34b25693 authored by Tim Peters's avatar Tim Peters

_Py_AskYesNo(): Removed this function. It was defined only in a

Py_TRACE_REFS build, but wasn't referenced.
parent c53b29e2
......@@ -42,11 +42,6 @@ static void err_input(perrdetail *);
static void initsigs(void);
static void call_sys_exitfunc(void);
static void call_ll_exitfuncs(void);
#ifdef Py_TRACE_REFS
int _Py_AskYesNo(char *prompt);
#endif
extern void _PyUnicode_Init(void);
extern void _PyUnicode_Fini(void);
extern void _PyCodecRegistry_Init(void);
......@@ -1389,21 +1384,6 @@ initsigs(void)
PyOS_InitInterrupts(); /* May imply initsignal() */
}
#ifdef Py_TRACE_REFS
/* Ask a yes/no question */
int
_Py_AskYesNo(char *prompt)
{
char buf[256];
fprintf(stderr, "%s [ny] ", prompt);
if (fgets(buf, sizeof buf, stdin) == NULL)
return 0;
return buf[0] == 'y' || buf[0] == 'Y';
}
#endif
#ifdef MPW
/* Check for file descriptor connected to interactive device.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment