Home
last modified time | relevance | path

Searched refs:SocketHandler (Results 1 – 8 of 8) sorted by relevance

/third_party/python/Lib/logging/
Dhandlers.py525 class SocketHandler(logging.Handler): class
692 class DatagramHandler(SocketHandler):
707 SocketHandler.__init__(self, host, port)
/third_party/python/Doc/library/
Dlogging.handlers.rst466 SocketHandler chapter
469 The :class:`SocketHandler` class, located in the :mod:`logging.handlers` module,
473 .. class:: SocketHandler(host, port)
475 Returns a new instance of the :class:`SocketHandler` class intended to
532 :meth:`~SocketHandler.makePickle`.
566 module, inherits from :class:`SocketHandler` to support sending logging messages
590 The factory method of :class:`SocketHandler` is here overridden to create
597 is as described in the documentation for :meth:`SocketHandler.makePickle`.
Dlogging.config.rst775 class=handlers.SocketHandler
/third_party/python/Doc/howto/
Dlogging-cookbook.rst342 handler can block: Even a :class:`SocketHandler` operation may do a
411 :class:`SocketHandler` instance to the root logger at the sending end::
417 socketHandler = logging.handlers.SocketHandler('localhost',
539 the :meth:`~handlers.SocketHandler.makePickle` method and implementing your
727 to have all the processes log to a :class:`~handlers.SocketHandler`, and have a
1003 :class:`SocketHandler` to log from the web application to a listener in a separate
1253 via a :class:`~handlers.SocketHandler`, or in JSON form via an
Dlogging.rst939 #. :class:`~handlers.SocketHandler` instances send messages to TCP/IP
1044 :class:`~handlers.SocketHandler` emits an event by pickling it and sending it
/third_party/python/Lib/test/
Dtest_logging.py1707 hcls = logging.handlers.SocketHandler
/third_party/python/Doc/whatsnew/
D3.4.rst1079 :class:`~logging.handlers.SocketHandler` and
/third_party/python/Misc/
DHISTORY3941 - logging: added support for Unix domain sockets to SocketHandler and
21450 LogHandler easier to interact with DatagramHandler and SocketHandler.