Returns vars copied from sequence without mutable property.
(structure)
| 273 | |
| 274 | |
| 275 | def copy_mutable_vars(structure): |
| 276 | """ |
| 277 | Returns vars copied from sequence without mutable property. |
| 278 | """ |
| 279 | flat_structure = copy.copy(flatten(structure)) |
| 280 | return pack_sequence_as(structure, flat_structure) |
| 281 | |
| 282 | |
| 283 | def _recursive_assert_same_structure(nest1, nest2, check_types, skip_if): |
no test coverage detected