You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Add DirectorySnapshotDiff.ContextManager
A context manager that creates two directory snapshots and a diff object
that represents the difference between the two snapshots.
```python
dir_snapshot_diff_context_manager = DirectorySnapshotDiff.ContextManager("some_path")
with dir_snapshot_diff_context_manager:
# Do some things that change files...
...
print(dir_snapshot_diff_context_manager.diff.files_created)
print(dir_snapshot_diff_context_manager.diff.files_deleted)
```
* Add entry to changelog.rst
* Add typing to ContextManager.__init__
0 commit comments