On Mon, 17 May 2010 19:02:18 -0700, paragk wrote: > Hi, > > I am unable to figure out the cause of python pickle unable to find the > collection module. > > I am getting > > __import__(module) > ImportError: No module named collections
What is the actual value of module? Here's an obvious failure mode: >>> __import__("collections ") Traceback (most recent call last): File "<stdin>", line 1, in <module> ImportError: No module named collections > module > str: collections Try printing repr(str) to see what's actually there. It may also help if you post a copy-and-paste of the complete traceback. -- Steven -- http://mail.python.org/mailman/listinfo/python-list