Commit a35f4b99 authored by Georg Brandl's avatar Georg Brandl

#6155: remove usage of cPickle.

parent 438a43a7
...@@ -1352,7 +1352,7 @@ the receiving end. A simple way of doing this is attaching a ...@@ -1352,7 +1352,7 @@ the receiving end. A simple way of doing this is attaching a
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:: module. Here is a basic working example::
import cPickle import pickle
import logging import logging
import logging.handlers import logging.handlers
import socketserver import socketserver
...@@ -1385,7 +1385,7 @@ module. Here is a basic working example:: ...@@ -1385,7 +1385,7 @@ module. Here is a basic working example::
self.handleLogRecord(record) self.handleLogRecord(record)
def unPickle(self, data): def unPickle(self, data):
return cPickle.loads(data) return pickle.loads(data)
def handleLogRecord(self, record): def handleLogRecord(self, record):
# if a name is specified, we use the named logger rather than the one # if a name is specified, we use the named logger rather than the one
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment