/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/xml4.py

  • Committer: Robert Collins
  • Date: 2010-05-06 11:08:10 UTC
  • mto: This revision was merged to the branch mainline in revision 5223.
  • Revision ID: robertc@robertcollins.net-20100506110810-h3j07fh5gmw54s25
Cleaner matcher matching revised unlocking protocol.

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
# along with this program; if not, write to the Free Software
15
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
16
 
17
 
from __future__ import absolute_import
18
 
 
19
 
from ...xml_serializer import (
 
17
from bzrlib.xml_serializer import (
20
18
    Element,
21
19
    SubElement,
22
20
    XMLSerializer,
23
21
    escape_invalid_chars,
24
22
    )
25
 
from ...bzr.inventory import ROOT_ID, Inventory
26
 
import ...bzr.inventory as inventory
27
 
from ...revision import Revision
28
 
from ...errors import BzrError
 
23
from bzrlib.inventory import ROOT_ID, Inventory
 
24
import bzrlib.inventory as inventory
 
25
from bzrlib.revision import Revision
 
26
from bzrlib.errors import BzrError
29
27
 
30
28
 
31
29
class _Serializer_v4(XMLSerializer):