Metadata-Version: 2.4
Name: cow-types
Version: 0.1.0
Summary: Copy-on-write alternatives to dict, set, and list
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: dev
Requires-Dist: pytest; extra == "dev"
Dynamic: license-file

# cow-types

Copy-on-write alternatives to Python's built-in `dict`, `set`, and `list`.

These objects support all the same operations as their standard counterparts, but when passed to a function, any modifications made by the callee do not affect the caller's copy.
