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

  • Committer: Martin Pool
  • Date: 2008-07-11 06:03:27 UTC
  • mto: This revision was merged to the branch mainline in revision 3537.
  • Revision ID: mbp@sourcefrog.net-20080711060327-vknx0f3dxr2hrm5m
Add repr methods

Show diffs side-by-side

added added

removed removed

Lines of Context:
2041
2041
        self.has_graph = parents
2042
2042
        self._is_locked = is_locked
2043
2043
 
 
2044
    def __repr__(self):
 
2045
        return "%s(%r)" % (self.__class__.__name__, self._graph_index)
 
2046
 
2044
2047
    def add_records(self, records, random_id=False):
2045
2048
        """Add multiple records to the index.
2046
2049