Mark this instance as the manager for its class.
(self)
| 340 | return state.InstanceState |
| 341 | |
| 342 | def manage(self): |
| 343 | """Mark this instance as the manager for its class.""" |
| 344 | |
| 345 | setattr(self.class_, self.MANAGER_ATTR, self) |
| 346 | |
| 347 | @util.hybridmethod |
| 348 | def manager_getter(self): |