(self, value)
| 89 | return None |
| 90 | |
| 91 | def fset(self, value): |
| 92 | value = converter(value) |
| 93 | d = self._json_ |
| 94 | for x in apipaths[:-1]: |
| 95 | d = d.setdefault(x, {}) |
| 96 | d[apipaths[-1]] = value |
| 97 | |
| 98 | def fdel(self): |
| 99 | d = self._json_ |
nothing calls this directly
no test coverage detected