~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/patch.py

  • Committer: Aaron Bentley
  • Date: 2005-07-29 17:19:16 UTC
  • mto: (1092.1.41) (1185.3.4) (974.1.47)
  • mto: This revision was merged to the branch mainline in revision 1020.
  • Revision ID: abentley@panoramicfeedback.com-20050729171916-322fd81b451d2e3e
Added merge-type parameter to merge.

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
    return status 
41
41
 
42
42
 
 
43
def diff(orig_file, mod_str, orig_label=None, mod_label=None):
 
44
    """Compare two files, and produce a patch.
 
45
 
 
46
    :param orig_file: path to the old file
 
47
    :type orig_file: str
 
48
    :param mod_str: Contents of the new file
 
49
    :type mod_str: str
 
50
    :param orig_label: The label to use for the old file
 
51
    :type orig_label: str
 
52
    :param mod_label: The label to use for the new file
 
53
    :type mod_label: str
 
54
    """
 
55
    args = ["diff", "-u" ]
 
56
    if orig_label is not None and mod_label is not None:
 
57
        args.extend(("-L", orig_label, "-L", mod_label))
 
58
    args.extend(("--", orig_file, "-"))
 
59
    patch, stderr, status = write_to_cmd(args, mod_str)
 
60
    if status == 0:
 
61
        return None
 
62
    else:
 
63
        return patch
 
64
 
43
65
def diff3(out_file, mine_path, older_path, yours_path):
44
66
    def add_label(args, label):
45
67
        args.extend(("-L", label))