/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/transport/remote.py

  • Committer: Martin Pool
  • Date: 2009-03-13 07:46:26 UTC
  • mto: This revision was merged to the branch mainline in revision 4189.
  • Revision ID: mbp@sourcefrog.net-20090313074626-i3ycz4wubq6nbiuw
Remove APIs deprecated up to and including 1.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
    urlutils,
35
35
    )
36
36
from bzrlib.smart import client, medium
37
 
from bzrlib.symbol_versioning import (deprecated_method, one_four)
 
37
from bzrlib.symbol_versioning import (
 
38
    deprecated_method,
 
39
    )
38
40
 
39
41
 
40
42
class _SmartStat(object):
155
157
    def get_smart_medium(self):
156
158
        return self._get_connection()
157
159
 
158
 
    @deprecated_method(one_four)
159
 
    def get_shared_medium(self):
160
 
        return self._get_shared_connection()
161
 
 
162
160
    def _remote_path(self, relpath):
163
161
        """Returns the Unicode version of the absolute path for relpath."""
164
162
        return self._combine_paths(self._path, relpath)