class documentation
Object encapsulating a single result from a walk.
| Method | __init__ |
Initialize WalkEntry. |
| Method | __repr__ |
Return string representation of WalkEntry. |
| Method | changes |
Get the tree changes for this entry. |
| Instance Variable | commit |
Undocumented |
| Instance Variable | _changes |
Undocumented |
| Instance Variable | _get |
Undocumented |
| Instance Variable | _rename |
Undocumented |
| Instance Variable | _store |
Undocumented |
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.tree_changes_for_merge.
| Parameters | |
pathbytes | None | Portion 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). |
| Returns | |
list[ | Undocumented |