pickle.load() on an dictionary of dictionaries doesn't load full data structure on first call
'xiong_chiamiov': {'name': 'James Pearson', 'distro': 'Arch'}} The first time I pickle.load() it, I get this: {'xiong_chiamiov': {'name': 'James Pearson'}} The 2nd time, I get the full thing. Is this a bug in pickl
Re: pickle.load() on an dictionary of dictionaries doesn't load full data structure on first call
Ah, thank you, you explained that quite well and opened my eyes to some things I very much need to improve in my code. I'll keep those list-etiquette things in mind next time. On Sun, Feb 22, 2009 at 5:10 PM, Albert Hopkins wrote: > On Sun, 2009-02-22 at 16:15 -0800, James Pears