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

  • Committer: Aaron Bentley
  • Date: 2007-02-07 03:09:58 UTC
  • mfrom: (2268 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2269.
  • Revision ID: aaron.bentley@utoronto.ca-20070207030958-fx6ykp7rg7zma6xu
Merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
from bzrlib import (
28
28
    errors,
29
29
    tsort,
 
30
    revision,
30
31
    ui,
31
32
    )
32
33
from bzrlib.transport.memory import MemoryTransport
58
59
        self.finished = False
59
60
        self._access_mode = access_mode
60
61
 
 
62
    @staticmethod
 
63
    def check_not_reserved_id(version_id):
 
64
        revision.check_not_reserved_id(version_id)
 
65
 
61
66
    def copy_to(self, name, transport):
62
67
        """Copy this versioned file to name on transport."""
63
68
        raise NotImplementedError(self.copy_to)