~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzr.py

  • Committer: mbp at sourcefrog
  • Date: 2005-03-09 06:19:37 UTC
  • Revision ID: mbp@sourcefrog.net-20050309061937-5c44d42fc9c8fd3a
depend only on regular ElementTree installation

Show diffs side-by-side

added added

removed removed

Lines of Context:
83
83
from pprint import pprint
84
84
from stat import *
85
85
from glob import glob
86
 
from ElementTree import Element, ElementTree, SubElement
87
86
 
88
87
import bzrlib
89
88
from bzrlib.store import ImmutableStore
116
115
## TODO: Perhaps make UUIDs predictable in test mode to make it easier
117
116
## to compare output?
118
117
 
119
 
## TODO: Is ElementTree really all that much better for our purposes?
120
 
## Perhaps using the standard MiniDOM would be enough?
121
 
 
122
 
 
123
 
 
124
118
 
125
119
 
126
120