(name)
| 133 | |
| 134 | |
| 135 | def _readonly(name): |
| 136 | # type: (str) -> NoReturn |
| 137 | default = Conf.__dict__[name].default |
| 138 | Interceptor.set_from_hook(conf, name, default) |
| 139 | raise ValueError("Read-only value !") |
| 140 | |
| 141 | |
| 142 | ReadOnlyAttribute = functools.partial( |