2011-12-27 45 views
0

當我運行Parent.py它調用子child.exe出現以下錯誤的PyDev/Python3.1子過程錯誤 - 沒有編碼聲明

File "child.exe", line 1 
SyntaxError: Non-UTF-8 code starting with '\x90' in file child.exe on line 1, but no encoding declared; see http://python.org/dev/peps/pep-0263/ for details 

如果我有孩子運行Parent.py .py,執行成功返回'來自父項的Hello'。來自Eclipse。

如果我從運閒着沒事運行Parent.py在

我已閱讀http://python.org/dev/peps/pep-0263/文檔,並理解它都child.exe和child.py的情況下,返回,可能missunderstood它的意思我應該添加我已經嘗試添加到child.exe的建議評論...他們沒有工作。

Parent.py

import os 
import subprocess 
import sys 

if sys.platform == "win32": 
    import msvcrt 
    import _subprocess 
else: 
    import fcntl 

# Create pipe for communication 
pipeout, pipein = os.pipe() 

# Prepare to pass to child process 
if sys.platform == "win32": 
    curproc = _subprocess.GetCurrentProcess() 
    pipeouth = msvcrt.get_osfhandle(pipeout) 
    pipeoutih = _subprocess.DuplicateHandle(curproc, pipeouth, curproc, 0, 1, 
      _subprocess.DUPLICATE_SAME_ACCESS) 

    pipearg = str(int(pipeoutih)) 
else: 
    pipearg = str(pipeout) 

    # Must close pipe input if child will block waiting for end 
    # Can also be closed in a preexec_fn passed to subprocess.Popen 
    fcntl.fcntl(pipein, fcntl.F_SETFD, fcntl.FD_CLOEXEC) 

# Start child with argument indicating which FD/FH to read from 
subproc = subprocess.Popen(['python', 'child.exe', pipearg], close_fds=False) 

# Close read end of pipe in parent 
os.close(pipeout) 
if sys.platform == "win32": 
    pipeoutih.Close() 

# Write to child (could be done with os.write, without os.fdopen) 
pipefh = os.fdopen(pipein, 'w') 
pipefh.write("Hello from parent.") 
pipefh.close() 

# Wait for the child to finish 
subproc.wait() 



Child.exe(冷凍用cx_freeze)

import os, sys 


if sys.platform == "win32": 
    import msvcrt 

# Get file descriptor from argument 
pipearg = int(sys.argv[1]) 
if sys.platform == "win32": 
    pipeoutfd = msvcrt.open_osfhandle(pipearg, 0) 
else: 
    pipeoutfd = pipearg 

# Read from pipe 
# Note: Could be done with os.read/os.close directly, instead of os.fdopen 
pipeout = os.fdopen(pipeoutfd, 'r') 
print(pipeout.read()) 
pipeout.close() 
+1

請告訴我您的Eclipse編輯器的編碼?它似乎不是ascii,也不是utf-8。由於缺少字節順序標記(BOM),它似乎也是「ut-16」。你可以看看你的standrad編輯器編碼嗎? – 2011-12-27 10:22:01

+0

我不是100%我正在尋找合適的地方,但是如果我去編輯 - >設置編碼 - >它被設置爲**默認(從容器繼承:Cp1252)**它也有一個選項可供選擇其他類型,如UTF-8 – Rhys 2011-12-27 10:27:52

回答

2
subprocess.Popen(['python', 'child.exe', pipearg], ... 

問題是,如果child.exe是一個正常的Windows可執行文件,你試圖讓python讀取一個二進制文件。由於二進制文件的字節超出了標準的ascii-utf8標準,因此解釋器無法讀取該錯誤。

也許你想的只是執行child.exe只是刪除從它的蟒蛇行什麼:

subprocess.Popen(['child.exe', pipearg], ... 
+0

很有意義。你是個天才。非常感謝! – Rhys 2011-12-27 19:23:37