Part of bzrlib.inventory_delta View In Hierarchy
| Method | __init__ | Create an InventoryDeltaDeserializer. |
| Method | parse_text_bytes | Parse the text bytes of a serialized inventory delta. |
| Method | _deserialize_bool | Undocumented |
| Parameters | versioned_root | If True, any root entry that is seen is expected to be versioned, and root entries can have any fileid. |
| tree_references | If True support tree-reference entries. |
If versioned_root and/or tree_references flags were set via require_flags, then the parsed flags must match or a BzrError will be raised.
| Parameters | bytes | The bytes to parse. This can be obtained by calling delta_to_lines and then doing ''.join(delta_lines). |
| Returns | (parent_id, new_id, versioned_root, tree_references, inventory_delta) | |