~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/sftp.py

Merged bzr.dev and updated NEWS with a better description of changes

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