Open the current base file with the (original) mode and encoding. Return the resulting stream.
(self)
| 1205 | self.release() |
| 1206 | |
| 1207 | def _open(self): |
| 1208 | """ |
| 1209 | Open the current base file with the (original) mode and encoding. |
| 1210 | Return the resulting stream. |
| 1211 | """ |
| 1212 | open_func = self._builtin_open |
| 1213 | return open_func(self.baseFilename, self.mode, |
| 1214 | encoding=self.encoding, errors=self.errors) |
| 1215 | |
| 1216 | def emit(self, record): |
| 1217 | """ |
no outgoing calls
no test coverage detected