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

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2011-05-18 16:11:05 UTC
  • mfrom: (5074.5.9 fix523746)
  • Revision ID: pqm@pqm.ubuntu.com-20110518161105-pbt4yc8mgl0y3qsy
(mbp) better handling of subprocesses with non-ascii encodings and filenames
 (bug 523746) (INADA Naoki)

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
"""Inter-object utility class."""
19
19
 
20
20
 
 
21
from bzrlib.errors import NoCompatibleInter
 
22
 
 
23
 
21
24
class InterObject(object):
22
25
    """This class represents operations taking place between two objects.
23
26
 
81
84
        for provider in reversed(klass._optimisers):
82
85
            if provider.is_compatible(source, target):
83
86
                return provider(source, target)
84
 
        return klass(source, target)
 
87
        raise NoCompatibleInter(source, target)
85
88
 
86
89
    def lock_read(self):
87
90
        """Take out a logical read lock.