| 1139 | struct obj_attr { |
| 1140 | using key_type = object; |
| 1141 | static object get(handle obj, handle key) { return getattr(obj, key); } |
| 1142 | static void set(handle obj, handle key, handle val) { setattr(obj, key, val); } |
| 1143 | }; |
| 1144 |
no test coverage detected