diff options
author | Georg Brandl <georg@python.org> | 2011-02-15 12:44:43 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2011-02-15 12:44:43 (GMT) |
commit | 08e278a562210c58ca7b4d6a4d19ff1ee22c5476 (patch) | |
tree | 641069f2533d35b7f9ac29ce8bfb3d1a6d626a16 /Doc | |
parent | dbb958561d57381d5d93958ca75a3e46ab96b42d (diff) | |
download | cpython-08e278a562210c58ca7b4d6a4d19ff1ee22c5476.zip cpython-08e278a562210c58ca7b4d6a4d19ff1ee22c5476.tar.gz cpython-08e278a562210c58ca7b4d6a4d19ff1ee22c5476.tar.bz2 |
Remove editing slip.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/logging.handlers.rst | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Doc/library/logging.handlers.rst b/Doc/library/logging.handlers.rst index 21700bc..eda9302 100644 --- a/Doc/library/logging.handlers.rst +++ b/Doc/library/logging.handlers.rst @@ -326,11 +326,13 @@ sends logging output to a network socket. The base class uses a TCP socket. them on the receiving end, or alternatively you can disable unpickling of global objects on the receiving end. + .. method:: send(packet) Send a pickled string *packet* to the socket. This function allows for partial sends which can happen when the network is busy. + .. method:: createSocket() Tries to create a socket; on failure, uses an exponential back-off @@ -351,7 +353,7 @@ sends logging output to a network socket. The base class uses a TCP socket. been used, you could lose messages (since the handler won't even attempt a connection until the delay has elapsed, but just silently drop messages during the delay period). -^ + .. _datagram-handler: |