YES!
This is what I was looking for.
Great! All works fine now.

Thank you very much Gabriel.

Gabriel Genellina schreef:
> Add this on your sitecustomize.py module (or create one)
>
> import sys
> def raw_input(prompt=None):
>    if prompt: sys.stdout.write(prompt)
>    return original_raw_input()
>
> import __builtin__
> original_raw_input = __builtin__.raw_input
> __builtin__.raw_input = raw_input
>
> It just replaces the builtin raw_input with a custom function.
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to