Files
typeshed/stubs/paramiko
Steve B 243472c9fd Correct return type BufferedFile.read in paramiko (#4994)
According to the docs in paramiko the return type will always be bytes
``` 
.. note::
            ``'b'`` mode flag is ignored (``self.FLAG_BINARY`` in
            ``self._flags``), because SSH treats all files as binary, since we
            have no idea what encoding the file is in, or even if the file is
            text data.

        :param int size: maximum number of bytes to read
        :returns:
            data read from the file (as bytes), or an empty string if EOF was
            encountered immediately
```
2021-02-01 14:28:22 +01:00
..