Files
typeshed/stdlib/3.4
Jelle Zijlstra 9a1e8452a3 input argument to Process.communicate is Optional (#894)
The code for this method starts as follows:
```
    @coroutine
    def communicate(self, input=None):
        if input is not None:
            stdin = self._feed_stdin(input)
```
2017-01-29 10:12:36 -08:00
..
2016-12-20 02:28:12 -08:00
2016-12-19 23:53:19 -08:00
2016-08-23 18:57:46 -07:00