Windows, subprocess.Popen & encodage

M

Méta-MCI

Hi!

From long time, I have problems with strings return, in Windows, by
subprocess.Popen / stdout.read()

Last night, I found, by hazard, than if the second byte equal 0, it's,
perhaps, the solution.
With a code like this:

p=subprocess.Popen(u850("cmd /u/c ....
tdata=p.stdout.read()
if ord(tdata[1])==0:
data=tdata.decode('utf-16')
else:
data=tdata.decode('cp850')

Diffrents scripts seem run OK. I had try with:
- common dir
- dir on unicode-named-files
- ping
- various commands


But, I don't found anything, in any documentations, on this.



Sombody can confirm? Am I misled? Am I right?



* sorry for my bad english*


@-salutations

Michel Claveau
 
?

=?ISO-8859-15?Q?=22Martin_v=2E_L=F6wis=22?=

But, I don't found anything, in any documentations, on this.
Sombody can confirm? Am I misled? Am I right?

You are right, and you are misled. The encoding of the data
that you get from Popen.read is not under the control of Python:
i.e. not only you don't know, but Python doesn't know, either.
The operating system simply has no mechanism of indicating
what encoding is used on a pipe.

So different processes may chose different encodings. Some
may produce UTF-16, others may produce CP-850, yet others
UTF-8, and so on. There really is no way to tell other than
reading the documentation *of the program you run*, and,
failing that, reading the source code of the program you
run.

On Windows, many programs will indeed use one of the
two system code pages, or UTF-16. It's true that
UTF-16 can be quite reliably detected by looking at the
first two bytes. However, the two system code pages
(OEM CP and ANSI CP) are not so easy to tell apart.

Regards,
Martin
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,055
Latest member
SlimSparkKetoACVReview

Latest Threads

Top