2015-01-08 71 views
0

我正在重写前一个问题的程序,而且我遇到了问题。请参阅代码:TypeError:Popen无法迭代

#!/usr/bin/python 

import subprocess,time, timeit 
from multiprocessing import Process, Queue 
import re, os, pprint, math 
from collections import defaultdict 

Dict = {} 
identifier = "" 
hexbits = [] 
count = defaultdict(int) 

def __ReadRX__(RX_info): 
    lines = iter(RX_info.stdout.readline, "") 
    try: 
     start = time.clock() 
     for line in lines: 
      if re.match(r"^\d+.*$",line): 
       splitline = line.split() 
       del splitline[1:4] 
       identifier = splitline[1] 
       count[identifier] += 1 
       end = time.clock() 
       timing = round((end - start) * 10000, 100) 
       dlc = splitline[2] 
       hexbits = splitline[3:] 
       Dict[identifier] = [dlc, hexbits, count[identifier],int(timing)] 
       start = end 
    except keyboardinterrupt: 
     pass 

procRX = subprocess.Popen('receivetest -f=/dev/pcan32'.split(), stdout=subprocess.PIPE) 

if __name__ == '__main__': 
    munchCan = Process(target=__ReadRX__, args=(procRX)) 
    munchCan.start() 
    munchCan.join() 
    print Dict 

当试图运行代码我得到以下错误:

File "./cancheck2.py", line 36, in <module> 
    munchCan = Process(target=__ReadRx__, args=(procRX)) 
File "/usr/lib/python2.7/multiprocessing/process.py", line 104, in __init__ 
    self._args = tuple(args) 
TypeError: 'Popen' objec is not iterable 

之前分隔我子进程并设置__ReadRX__作为一个独立的过程此代码工作。

Coudl任何人都解释发生了什么,因为我不太明白?

回答

2

(procRX)不创建元组,您必须使用(procRX,)

+0

我是个白痴....谢谢! – Jalcock501