BeAllAround / BeAllAround/py_utils
__utils - deep_copy any iter
Open
enhancement
good first issue
- Dominant language
- Python
- Stars
- 0
- Forks
- 0
- PR merge metrics
- No merged PRs in 30d
Description
Need to extend the copy function so that it is compatible with any iterator - be it: dict, list, str, etc.
That is:
```
try:
iter(value);
except TypeError:
pass; # not iterable
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.