Called from ImageFile to set the Python file-like object :param fd: A Python file-like object :returns: None
(self, fd: IO[bytes])
| 778 | pass |
| 779 | |
| 780 | def setfd(self, fd: IO[bytes]) -> None: |
| 781 | """ |
| 782 | Called from ImageFile to set the Python file-like object |
| 783 | |
| 784 | :param fd: A Python file-like object |
| 785 | :returns: None |
| 786 | """ |
| 787 | self.fd = fd |
| 788 | |
| 789 | def setimage( |
| 790 | self, |
no outgoing calls
no test coverage detected