Searched refs:BaseRotatingHandler (Results 1 – 4 of 4) sorted by relevance
/external/python/cpython3/Lib/logging/ |
D | handlers.py | 51 class BaseRotatingHandler(logging.FileHandler): class 125 class RotatingFileHandler(BaseRotatingHandler): 161 BaseRotatingHandler.__init__(self, filename, mode, encoding=encoding, 211 class TimedRotatingFileHandler(BaseRotatingHandler): 223 BaseRotatingHandler.__init__(self, filename, 'a', encoding=encoding,
|
/external/python/cpython3/Doc/library/ |
D | logging.handlers.rst | 213 BaseRotatingHandler chapter 216 The :class:`BaseRotatingHandler` class, located in the :mod:`logging.handlers` 222 .. class:: BaseRotatingHandler(filename, mode, encoding=None, delay=False, errors=None) 253 .. attribute:: BaseRotatingHandler.rotator 261 .. method:: BaseRotatingHandler.rotation_filename(default_name) 276 .. method:: BaseRotatingHandler.rotate(source, dest)
|
/external/python/cpython3/Doc/howto/ |
D | logging.rst | 949 #. :class:`~handlers.BaseRotatingHandler` is the base class for handlers that
|
/external/python/cpython3/Doc/whatsnew/ |
D | 2.4.rst | 1185 certain size. Both classes derive from a new :class:`BaseRotatingHandler` class
|