79
79
print 'text store:'
80
print ' %5d file texts' % len(b.text_store)
80
c, t = b.text_store.total_size()
81
print ' %5d file texts' % c
82
print ' %5d kB' % (t/1024)
83
85
print 'revision store:'
84
print ' %5d revisions' % len(b.revision_store)
86
c, t = b.revision_store.total_size()
87
print ' %5d revisions' % c
88
print ' %5d kB' % (t/1024)
87
92
print 'inventory store:'
88
print ' %5d inventories' % len(b.inventory_store)
93
c, t = b.inventory_store.total_size()
94
print ' %5d inventories' % c
95
print ' %5d kB' % (t/1024)