~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/add.py

Documentation.

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
    """Absorb add reports and do nothing."""
46
46
    pass
47
47
 
 
48
 
48
49
def add_reporter_print(path, kind, entry):
49
50
    """Print a line to stdout for each file that's added."""
50
51
    print "added", bzrlib.osutils.quotefn(path)
51
 
    
 
52
 
 
53
 
52
54
def _prepare_file_list(file_list):
53
55
    """Prepare a file list for use by smart_add_*."""
54
56
    import sys
79
81
    This is designed more towards DWIM for humans than API simplicity.
80
82
    For the specific behaviour see the help for cmd_add().
81
83
 
82
 
    This yields a sequence of (path, kind, file_id) for added files.
 
84
    This calls reporter with each (path, kind, file_id) of added files.
83
85
 
84
86
    Returns the number of files added.
85
87
    """