[Python-Dev] "conflicting types" in python CVS build
Skip Montanaro
skip@pobox.com
Sun, 27 Oct 2002 08:20:05 -0600
Alex> at the time, lines 167-169 were
Alex> char *
Alex> PyOS_Readline(char *prompt)
Alex> {
Alex> which conflicted with the prototype in pythonrun.h. but it looks
Alex> like a change which fixed that was checked in this morning. sorry
Alex> for the confusion.
No confusion on your part. I encountered the same problem and checked in
the change last night. This was the checkin message:
Change PyOS_Readline declaration to match the recent change to
myreadline.c (see Patch 512981). I changed stdin to sys_stdin in the
body of the function, but did not change stderr to sys_stdout, though I
suspect that may be the correct course. I don't know the code involved
well enough to judge.
Skip