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()
Something like this should work:
Basically, a
SSLContext
needs aprotocol
, and for whatever reason, theprotocol
is not saved (e.g. it's not in a__reduce__
method) when the instance is pickled. If you need more state (i.e. otherargs
andkwds
from the__init__
method), then you'll need to extend the return value from thesave_sslcontext
function above. (Note, if you are in python 2.x, then the appropriate module iscopy_reg
).