~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/xml4.py

  • Committer: Robert Collins
  • Date: 2007-07-04 08:08:13 UTC
  • mfrom: (2572 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2587.
  • Revision ID: robertc@robertcollins.net-20070704080813-wzebx0r88fvwj5rq
Merge bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2005, 2006 Canonical Ltd
 
2
#
1
3
# This program is free software; you can redistribute it and/or modify
2
4
# it under the terms of the GNU General Public License as published by
3
5
# the Free Software Foundation; either version 2 of the License, or
12
14
# along with this program; if not, write to the Free Software
13
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
14
16
 
15
 
 
16
17
from bzrlib.xml_serializer import ElementTree, SubElement, Element, Serializer
17
18
from bzrlib.inventory import ROOT_ID, Inventory, InventoryEntry
18
19
import bzrlib.inventory as inventory
20
21
from bzrlib.errors import BzrError
21
22
 
22
23
 
23
 
 
24
 
 
25
 
 
26
 
 
27
24
class _Serializer_v4(Serializer):
28
25
    """Version 0.0.4 serializer
29
26