~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/diff.py

  • Committer: Martin Pool
  • Date: 2009-03-13 07:46:26 UTC
  • mto: This revision was merged to the branch mainline in revision 4189.
  • Revision ID: mbp@sourcefrog.net-20090313074626-i3ycz4wubq6nbiuw
Remove APIs deprecated up to and including 1.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
""")
41
41
 
42
42
from bzrlib.symbol_versioning import (
43
 
        deprecated_function,
44
 
        one_three
45
 
        )
 
43
    deprecated_function,
 
44
    )
46
45
from bzrlib.trace import warning
47
46
 
48
47
 
436
435
    return timestamp.format_patch_date(mtime)
437
436
 
438
437
 
439
 
@deprecated_function(one_three)
440
 
def get_prop_change(meta_modified):
441
 
    if meta_modified:
442
 
        return " (properties changed)"
443
 
    else:
444
 
        return  ""
445
 
 
446
438
def get_executable_change(old_is_x, new_is_x):
447
439
    descr = { True:"+x", False:"-x", None:"??" }
448
440
    if old_is_x != new_is_x: