summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2012-08-11 09:12:55 (GMT)
committerGeorg Brandl <georg@python.org>2012-08-11 09:12:55 (GMT)
commiteb068f9fa144441df79e3851fbac63532c2cf592 (patch)
tree8d87dabc735057efd097f38958f26b0c9b1e3b2a /Doc
parentd26b658f1433a28b611906c078f47bc804a63dd1 (diff)
downloadcpython-eb068f9fa144441df79e3851fbac63532c2cf592.zip
cpython-eb068f9fa144441df79e3851fbac63532c2cf592.tar.gz
cpython-eb068f9fa144441df79e3851fbac63532c2cf592.tar.bz2
Fix casing of SocketServer module in 2.7.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/howto/logging-cookbook.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/Doc/howto/logging-cookbook.rst b/Doc/howto/logging-cookbook.rst
index 1bb1a46..0937812 100644
--- a/Doc/howto/logging-cookbook.rst
+++ b/Doc/howto/logging-cookbook.rst
@@ -295,17 +295,17 @@ the receiving end. A simple way of doing this is attaching a
logger2.warning('Jail zesty vixen who grabbed pay from quack.')
logger2.error('The five boxing wizards jump quickly.')
-At the receiving end, you can set up a receiver using the :mod:`socketserver`
+At the receiving end, you can set up a receiver using the :mod:`SocketServer`
module. Here is a basic working example::
import pickle
import logging
import logging.handlers
- import socketserver
+ import SocketServer
import struct
- class LogRecordStreamHandler(socketserver.StreamRequestHandler):
+ class LogRecordStreamHandler(SocketServer.StreamRequestHandler):
"""Handler for a streaming logging request.
This basically logs the record using whatever logging policy is
@@ -347,7 +347,7 @@ module. Here is a basic working example::
# cycles and network bandwidth!
logger.handle(record)
- class LogRecordSocketReceiver(socketserver.ThreadingTCPServer):
+ class LogRecordSocketReceiver(SocketServer.ThreadingTCPServer):
"""
Simple TCP socket-based logging receiver suitable for testing.
"""
@@ -357,7 +357,7 @@ module. Here is a basic working example::
def __init__(self, host='localhost',
port=logging.handlers.DEFAULT_TCP_LOGGING_PORT,
handler=LogRecordStreamHandler):
- socketserver.ThreadingTCPServer.__init__(self, (host, port), handler)
+ SocketServer.ThreadingTCPServer.__init__(self, (host, port), handler)
self.abort = 0
self.timeout = 1
self.logname = None