(self, key: str, search: bool = False)
| 476 | return adapter, user_data |
| 477 | |
| 478 | def is_instrumented(self, key: str, search: bool = False) -> bool: |
| 479 | if search: |
| 480 | return key in self |
| 481 | else: |
| 482 | return key in self.local_attrs |
| 483 | |
| 484 | def get_impl(self, key: str) -> _AttributeImpl: |
| 485 | return self[key].impl |
no outgoing calls