~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzr

  • Committer: Martin Pool
  • Date: 2005-09-05 09:27:11 UTC
  • Revision ID: mbp@sourcefrog.net-20050905092711-f9f5bded3fd82605
- more disentangling of xml storage format from objects

- remove pack_xml and unpack_xml function in favor of 
  serializer object

- test unpacking canned revision xml

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
    sys.exit(1)
43
43
os.unsetenv(REINVOKE)
44
44
 
45
 
import bzrlib, bzrlib.commands
 
45
import bzrlib
 
46
import bzrlib.commands
 
47
import bzrlib.trace
46
48
 
47
49
if __name__ == '__main__':
 
50
    bzrlib.trace.enable_default_logging()
48
51
    sys.exit(bzrlib.commands.main(sys.argv))