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

  • Committer: Martin Pool
  • Date: 2007-08-09 03:23:04 UTC
  • mto: This revision was merged to the branch mainline in revision 2693.
  • Revision ID: mbp@sourcefrog.net-20070809032304-r2nzqvfgqt36jkko
Rename upcoming release from 0.19 to 0.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
49
49
from bzrlib.osutils import pathjoin, fancy_rename, getcwd
50
50
from bzrlib.symbol_versioning import (
51
51
        deprecated_function,
52
 
        zero_nineteen,
 
52
        zero_ninety,
53
53
        )
54
54
from bzrlib.trace import mutter, warning
55
55
from bzrlib.transport import (
80
80
_default_do_prefetch = (_paramiko_version >= (1, 5, 5))
81
81
 
82
82
 
83
 
@deprecated_function(zero_nineteen)
 
83
@deprecated_function(zero_ninety)
84
84
def clear_connection_cache():
85
85
    """Remove all hosts from the SFTP connection cache.
86
86