Kaydet (Commit) a3da7c5f authored tarafından Christian Heimes's avatar Christian Heimes

make char* const

readline() takes a const char* and the other readline_until_enter_or_signal() implementation
already has const char*.
üst d3afe781
......@@ -1118,7 +1118,7 @@ onintr(int sig)
static char *
readline_until_enter_or_signal(char *prompt, int *signal)
readline_until_enter_or_signal(const char *prompt, int *signal)
{
PyOS_sighandler_t old_inthandler;
char *p;
......
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