6 lines
100 B
Python
6 lines
100 B
Python
|
class FakeFile:
|
||
|
def poll(self):
|
||
|
return False
|
||
|
|
||
|
def communicate(self):
|
||
|
return '', ''
|