如何腌制 ssl.SSLContext 对象
How to pickle a ssl.SSLContext object
Python windows 3.5,试试这些:
import ssl, pickle, multiprocessing
context = ssl.create_default_context()
foo = pickle.dumps(context)
pickle.loads(foo)
抛出异常:
TypeError: __new__() missing 1 required positional argument: 'protocol'
multiprocessing.Process 的子类抛出相同的异常:
class Foo(multiprocessing.Process):
def __init__(self):
super().__init__()
self.context = ssl.create_default_context()
def run(self):
pass
if __name__ == '__main__':
foo = Foo()
foo.start()
像这样的东西应该可以工作:
>>> import pickle, copyreg, ssl
>>>
>>> def save_sslcontext(obj):
... return obj.__class__, (obj.protocol,)
...
>>> copyreg.pickle(ssl.SSLContext, save_sslcontext)
>>>
>>> context = ssl.create_default_context()
>>> foo = pickle.dumps(context)
>>> _foo = pickle.loads(foo)
>>> _foo
<ssl.SSLContext object at 0x1011812a8>
>>> _foo.protocol
2
>>>
基本上,SSLContext
需要一个 protocol
,无论出于何种原因,当实例被腌制。如果您需要更多状态(即来自 __init__
方法的其他 args
和 kwds
),那么您需要从 save_sslcontext
扩展 return 值上面的功能。 (注意,如果你在 python 2.x,那么合适的模块是 copy_reg
)。
Python windows 3.5,试试这些:
import ssl, pickle, multiprocessing
context = ssl.create_default_context()
foo = pickle.dumps(context)
pickle.loads(foo)
抛出异常:
TypeError: __new__() missing 1 required positional argument: 'protocol'
multiprocessing.Process 的子类抛出相同的异常:
class Foo(multiprocessing.Process):
def __init__(self):
super().__init__()
self.context = ssl.create_default_context()
def run(self):
pass
if __name__ == '__main__':
foo = Foo()
foo.start()
像这样的东西应该可以工作:
>>> import pickle, copyreg, ssl
>>>
>>> def save_sslcontext(obj):
... return obj.__class__, (obj.protocol,)
...
>>> copyreg.pickle(ssl.SSLContext, save_sslcontext)
>>>
>>> context = ssl.create_default_context()
>>> foo = pickle.dumps(context)
>>> _foo = pickle.loads(foo)
>>> _foo
<ssl.SSLContext object at 0x1011812a8>
>>> _foo.protocol
2
>>>
基本上,SSLContext
需要一个 protocol
,无论出于何种原因,当实例被腌制。如果您需要更多状态(即来自 __init__
方法的其他 args
和 kwds
),那么您需要从 save_sslcontext
扩展 return 值上面的功能。 (注意,如果你在 python 2.x,那么合适的模块是 copy_reg
)。