~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/osutils.py

  • Committer: Daniel Watkins
  • Date: 2007-11-06 13:50:43 UTC
  • mfrom: (2974 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2983.
  • Revision ID: d.m.watkins@warwick.ac.uk-20071106135043-cz8810pvlwiwphx5
Merged bzr.dev and moved NEWS item to appropriate location.

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
 
460
461
        return pathjoin(F(p), e)
461
462
 
462
463
 
 
464
@deprecated_function(zero_ninetythree)
463
465
def backup_file(fn):
464
466
    """Copy a file to a backup.
465
467