Since Komodo's command output window is not a real terminal, there are some quirks you'll notice with the io handling.
In this case, Python is buffering the output, so you don't see the "hello: " message until after the fact. To work around this, when invoking Python, add the unbuffered mode argument -u, example:
Since Komodo's command output window is not a real terminal, there are some quirks you'll notice with the io handling.
In this case, Python is buffering the output, so you don't see the "hello: " message until after the fact. To work around this, when invoking Python, add the unbuffered mode argument -u, example:
python -u -c "a = raw_input('hello: '); print a"Cheers,
Todd