Windows, subprocess.Popen & encodage

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Méta-MCI

    #1

    Windows, subprocess.Popen & encodage

    Hi!

    From long time, I have problems with strings return, in Windows, by
    subprocess.Pope n / 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.Po pen(u850("cmd /u/c ....
    tdata=p.stdout. read()
    if ord(tdata[1])==0:
    data=tdata.deco de('utf-16')
    else:
    data=tdata.deco de('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?=

    #2
    Re: Windows, subprocess.Pope n & encodage

    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

    Comment

    • MC

      #3
      Re: Windows, subprocess.Pope n & encodage

      Thank you.






      --
      @-salutations

      Michel Claveau


      Comment

      Working...