Searched refs:BaseRotatingHandler (Results 1 – 7 of 7) sorted by relevance
/external/python/cpython2/Lib/logging/ |
D | handlers.py | 52 class BaseRotatingHandler(logging.FileHandler): class 84 class RotatingFileHandler(BaseRotatingHandler): 117 BaseRotatingHandler.__init__(self, filename, mode, encoding, delay) 162 class TimedRotatingFileHandler(BaseRotatingHandler): 171 BaseRotatingHandler.__init__(self, filename, 'a', encoding, delay)
|
/external/python/cpython3/Lib/logging/ |
D | handlers.py | 45 class BaseRotatingHandler(logging.FileHandler): class 119 class RotatingFileHandler(BaseRotatingHandler): 155 BaseRotatingHandler.__init__(self, filename, mode, encoding=encoding, 202 class TimedRotatingFileHandler(BaseRotatingHandler): 214 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/cpython2/Doc/howto/ |
D | logging.rst | 876 #. :class:`~handlers.BaseRotatingHandler` is the base class for handlers that
|
/external/python/cpython3/Doc/howto/ |
D | logging.rst | 928 #. :class:`~handlers.BaseRotatingHandler` is the base class for handlers that
|
/external/python/cpython3/Doc/whatsnew/ |
D | 2.4.rst | 1184 certain size. Both classes derive from a new :class:`BaseRotatingHandler` class
|
/external/python/cpython2/Doc/whatsnew/ |
D | 2.4.rst | 1184 certain size. Both classes derive from a new :class:`BaseRotatingHandler` class
|