class documentation

class WalkEntry(object):

View In Hierarchy

Object encapsulating a single result from a walk.

Method __init__ Undocumented
Method __repr__ Undocumented
Method changes Get the tree changes for this entry.
Instance Variable commit Undocumented
Instance Variable _changes Undocumented
Instance Variable _get_parents Undocumented
Instance Variable _rename_detector Undocumented
Instance Variable _store Undocumented
def __init__(self, walker, commit):

Undocumented

def __repr__(self):

Undocumented

def changes(self, path_prefix=None):

Get the tree changes for this entry.

Returns: For commits with up to one parent, a list of TreeChange
objects; if the commit has no parents, these will be relative to the empty tree. For merge commits, a list of lists of TreeChange objects; see dulwich.diff.tree_changes_for_merge.
Parameters
path_prefixPortion of the path in the repository to use to filter changes. Must be a directory name. Must be a full, valid, path reference (no partial names or wildcards).
commit =

Undocumented

_changes: dict =

Undocumented

_get_parents =

Undocumented

_rename_detector =

Undocumented

_store =

Undocumented