hello, i am using nested defaultdict from collections and i would like to write it as a pickle object to a file. when i try:
from collections import defaultdict x = defaultdict(lambda: defaultdict(list)) and then try to write to a pickle file, it says: TypeError: can't pickle function objects is there a way around this? it's simply a dictionary that i want to write to file.. this works no problems with ordinary dicts. thank you. -- http://mail.python.org/mailman/listinfo/python-list