def __init__(self, writer, reducers=None, protocol=pickle.HIGHEST_PROTOCOL):
pickle.Pickler.__init__(self, writer, protocol=protocol)
self.extended_init = set()
if reducers is None:
reducers = {}
if hasattr(pickle.Pickler, 'dispatch'):
# Make the dispatch registry an instance level attribute instead of
# a reference to the class dictionary under Python 2
self.dispatch = pickle.Pickler.dispatch.copy()
else:
# Under Python 3 initialize the dispatch table with a copy of the
# default registry
self.dispatch_table = copyreg.dispatch_table.copy()
for type, reduce_func in reducers.items():
self.register(type, reduce_func)
评论列表
文章目录