Python - Wie übergebe ich einen String an subprocess.Popen (mit dem Argument stdin)?

Wenn ich folgendes mache:

import subprocess
from cStringIO import StringIO
subprocess.Popen(['grep','f'],stdout=subprocess.PIPE,stdin=StringIO('one\ntwo\nthree\nfour\nfive\nsix\n')).communicate()[0]

Ich bekomme:

Traceback (most recent call last):
  File "<stdin>", line 1, in ?
  File "/build/toolchain/mac32/python-2.4.3/lib/python2.4/subprocess.py", line 533, in __init__
    (p2cread, p2cwrite,
  File "/build/toolchain/mac32/python-2.4.3/lib/python2.4/subprocess.py", line 830, in _get_handles
    p2cread = stdin.fileno()
AttributeError: 'cStringIO.StringI' object has no attribute 'fileno'

Anscheinend quakt ein cStringIO.StringIO-Objekt nicht nah genug an einer Datei, um dem Unterprozess zu entsprechen.Popen. Wie kann ich das umgehen?

Antworten auf die Frage(10)

Ihre Antwort auf die Frage