Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
526 views
in Technique[技术] by (71.8m points)

python - How to pickle a ssl.SSLContext object

Python 3.5 on windows, try these:

import ssl, pickle, multiprocessing
context = ssl.create_default_context()
foo = pickle.dumps(context)
pickle.loads(foo)

Throws an exception:

TypeError: __new__() missing 1 required positional argument: 'protocol'

subclass of multiprocessing.Process throws the same exception:

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()
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Something like this should work:

>>> 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
>>> 

Basically, a SSLContext needs a protocol, and for whatever reason, the protocol is not saved (e.g. it's not in a __reduce__ method) when the instance is pickled. If you need more state (i.e. other args and kwds from the __init__ method), then you'll need to extend the return value from the save_sslcontext function above. (Note, if you are in python 2.x, then the appropriate module is copy_reg).


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

1.4m articles

1.4m replys

5 comments

56.8k users

...