Python: can’t pickle module objects error
Python’s inability to pickle module objects is the real problem. Is there a good reason? I don’t think so. Having module objects unpicklable contributes to the frailty of python as a parallel / asynchronous language. If you want to pickle module objects, or almost anything in python, then use dill. Python 3.2.5 (default, May 19 … Read more