Open the current base file with the (original) mode and encoding. Return the resulting stream.
(self)
| 1243 | StreamHandler.close(self) |
| 1244 | |
| 1245 | def _open(self): |
| 1246 | """ |
| 1247 | Open the current base file with the (original) mode and encoding. |
| 1248 | Return the resulting stream. |
| 1249 | """ |
| 1250 | open_func = self._builtin_open |
| 1251 | return open_func(self.baseFilename, self.mode, |
| 1252 | encoding=self.encoding, errors=self.errors) |
| 1253 | |
| 1254 | def emit(self, record): |
| 1255 | """ |
no outgoing calls
no test coverage detected