~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/osutils.py

  • Committer: Alexander Belchenko
  • Date: 2007-11-02 08:45:10 UTC
  • mto: This revision was merged to the branch mainline in revision 2968.
  • Revision ID: bialix@ukr.net-20071102084510-ngqdd24hjhfdkgw3
start 0.93 development cycle; deprecate osutils.backup_file

Show diffs side-by-side

added added

removed removed

Lines of Context:
57
57
from bzrlib import symbol_versioning
58
58
from bzrlib.symbol_versioning import (
59
59
    deprecated_function,
 
60
    zero_ninetythree,
60
61
    )
61
62
from bzrlib.trace import mutter
62
63
 
463
464
        return pathjoin(F(p), e)
464
465
 
465
466
 
 
467
@deprecated_function(zero_ninetythree)
466
468
def backup_file(fn):
467
469
    """Copy a file to a backup.
468
470