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