/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/serializer.py

  • Committer: John Arbash Meinel
  • Date: 2009-06-17 19:10:35 UTC
  • mfrom: (4454 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4461.
  • Revision ID: john@arbash-meinel.com-20090617191035-0vztgazsdwa3mwg4
Merge bzr.dev 4454 in prep for NEWS

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
class Serializer(object):
25
25
    """Inventory and revision serialization/deserialization."""
26
26
 
 
27
    squashes_xml_invalid_characters = False
 
28
 
27
29
    def write_inventory(self, inv, f):
28
30
        """Write inventory to a file"""
29
31
        raise NotImplementedError(self.write_inventory)