(dictionary)
| 157 | |
| 158 | |
| 159 | def clear_contents_dictionary(dictionary): |
| 160 | dictionary = dictionary.copy() |
| 161 | for key in list(dictionary): |
| 162 | if key.startswith("__") or key in ("count", "index"): |
| 163 | del dictionary[key] |
| 164 | return dictionary |
| 165 | |
| 166 | |
| 167 | def test_tuple_resolver(): |
no test coverage detected