I have an application that launches a python script with parameters. When the script runs i print some info on the cmd. The funny thing is that i can't see anything from the print function on the cmd.

If i redirect sys.stdout to a file i get what i want to print which is strange.

I'm using python 2.6.4.

Anyone encountered something similar?

link|improve this question
Please provide your code – Blackmoon Apr 20 '11 at 10:27
Maybe it is obvious but, does your script work in foreground and has tty atached? do you flush the stream? – tmg Apr 20 '11 at 10:30
feedback

1 Answer

Are you using cmd.exe on windows? If so, there was or still is known problems trying to print to it using python. I believe the issue is a UTF-8 encoding problem. I have heard the following batch file will fix this issue (never tested).

set PYTHONIOENCODING=UTF-8
cmd /u /k chcp 65001
set PYTHONIOENCODING=
exit

Also its worth checking that your output is actually being flushed, try adding the following:

import sys
sys.stdout.flush()
link|improve this answer
Hi i've tried with sys.stdout.flush() but that seems not to work (maybe the stream is redirected somewhere, but here is a lot of code so I have to look very deep). The batch file did not seem to work either. I'm stuck with redirecting the stream to a log file. – Claudiu Chiorean Apr 22 '11 at 9:30
It sounds like you are using some kind of third party framework. Have you tried writing a single test file and running that independent of any third party code? – toc777 Apr 26 '11 at 9:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.