/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/versionedfile.py

Deprecate VersionedFile.join.

Show diffs side-by-side

added added

removed removed

Lines of Context:
98
98
        self.parents = None
99
99
 
100
100
 
 
101
def filter_absent(record_stream):
 
102
    """Adapt a record stream to remove absent records."""
 
103
    for record in record_stream:
 
104
        if record.storage_kind != 'absent':
 
105
            yield record
 
106
 
 
107
 
101
108
class VersionedFile(object):
102
109
    """Versioned text file storage.
103
110
    
517
524
        """
518
525
        raise NotImplementedError(self.annotate)
519
526
 
 
527
    @deprecated_method(one_five)
520
528
    def join(self, other, pb=None, msg=None, version_ids=None,
521
529
             ignore_missing=False):
522
530
        """Integrate versions from other into this versioned file.