This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author idank
Recipients eric.araujo, idank, kiilerix, nadeem.vawda, pitrou
Date 2011-08-27.11:03:07
SpamBayes Score 5.042345e-08
Marked as misclassified No
Message-id <1314442988.49.0.984048460309.issue12833@psf.upfronthosting.co.za>
In-reply-to
Content
You're right, as this little C program verifies:

#include <stdio.h>
#include <stdlib.h>
#include <readline/readline.h>

int main() {
   printf("foo ");
   char* buf = readline("");
   free(buf);

   return 0;
}

Passing ' ' seems to be a suitable workaround for those who can't pass the text directly to raw_input though (such is the case where you have special classes who handle output).
History
Date User Action Args
2011-08-27 11:03:08idanksetrecipients: + idank, pitrou, nadeem.vawda, kiilerix, eric.araujo
2011-08-27 11:03:08idanksetmessageid: <1314442988.49.0.984048460309.issue12833@psf.upfronthosting.co.za>
2011-08-27 11:03:07idanklinkissue12833 messages
2011-08-27 11:03:07idankcreate