mode may be 'r' or 'rb' to open as text or binary. Return a handle suitable for reading (same as pathlib.Path.open). When opening as text, accepts encoding parameters such as those accepted by io.TextIOWrapper.
(self, mode='r', *args, **kwargs)
| 134 | |
| 135 | @abc.abstractmethod |
| 136 | def open(self, mode='r', *args, **kwargs): |
| 137 | """ |
| 138 | mode may be 'r' or 'rb' to open as text or binary. Return a handle |
| 139 | suitable for reading (same as pathlib.Path.open). |
| 140 | |
| 141 | When opening as text, accepts encoding parameters such as those |
| 142 | accepted by io.TextIOWrapper. |
| 143 | """ |
| 144 | |
| 145 | @property |
| 146 | @abc.abstractmethod |
no outgoing calls
no test coverage detected