~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/xml.py

  • Committer: Robert Collins
  • Date: 2005-09-29 02:01:49 UTC
  • Revision ID: robertc@robertcollins.net-20050929020149-1ff16722c6a01b2c
reenable remotebranch tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#! /usr/bin/env python
2
1
# -*- coding: UTF-8 -*-
3
2
 
4
3
# This program is free software; you can redistribute it and/or modify
35
34
                                              Element, XMLTreeBuilder,
36
35
                                              fromstring, tostring)
37
36
 
 
37
from bzrlib.inventory import ROOT_ID, Inventory, InventoryEntry
38
38
from bzrlib.errors import BzrError
39
39
 
40
40
 
72
72
 
73
73
    def _read_element(self, f):
74
74
        return ElementTree().parse(f)
 
75