~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/commands.py

  • Committer: mbp at sourcefrog
  • Date: 2005-03-29 11:49:50 UTC
  • Revision ID: mbp@sourcefrog.net-20050329114950-c6c9ab8bd5ab72c0
performance notes and measurements

Show diffs side-by-side

added added

removed removed

Lines of Context:
359
359
                print '%-50s %s' % (path, ie.file_id)
360
360
            else:
361
361
                print path
 
362
 
 
363
 
 
364
 
 
365
def cmd_parse_inventory():
 
366
    import cElementTree
 
367
    
 
368
    cElementTree.ElementTree().parse(file('.bzr/inventory'))
 
369
 
 
370
 
 
371
 
 
372
def cmd_load_inventory():
 
373
    inv = Branch('.').read_working_inventory()
362
374
                
363
375
    
364
376