FakeProcess.communicate lacks an input and timeout args
Bug #1373224 reported by
Steve Baker
This bug affects 1 person
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
Python Fixtures |
Fix Committed
|
High
|
Free Ekanayaka |
Bug Description
From subprocess.Popen:
def communicate(self, input=None):
"""...
The optional input argument should be a
string to be sent to the child process, or None, if no data
should be sent to the child.
This prevents FakePopen from being used to test code that calls communicate with an argument.
In Python 3 it lacks the timeout argument too:
https:/
Changed in python-fixtures: | |
status: | New → Triaged |
importance: | Undecided → High |
To post a comment you must log in.
Updated the bug to mention also the lack of the timeout argument.