>>> 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

Reply via email to