~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/sftp.py

  • Committer: Aaron Bentley
  • Date: 2007-08-15 11:24:06 UTC
  • mfrom: (2702 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2703.
  • Revision ID: aaron.bentley@utoronto.ca-20070815112406-lyv23omlm0wgsu42
Merge bzr.dev

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