>>> import shelve
>>> sf = shelve.open('e:/abc.db')
>>> for i in range(10000):
... sf[str(i)]=i
...
>>> sf.close()
>>> sf = shelve.open('e:/abc.db')
>>> sf.clear()
>>> sf
{}
the abc.db is always 312k though i have use clear(), how can i shrink
the space?
--
http://mail.python.org/mailman/listinfo/python-list
- shelve file space always increase! smalltalk
- Re: shelve file space always increase! skip
- Re: shelve file space always increase! Michael Palmer
