def __init__(self):
self.stream = io.BytesIO()
self.dependents = []
self.branches = []
protocol = (pickle.DEFAULT_PROTOCOL if PY3_OR_LATER
else pickle.HIGHEST_PROTOCOL)
Pickler.__init__(self, self.stream, protocol=protocol)
评论列表
文章目录