(self)
| 1459 | |
| 1460 | @util.ro_memoized_property |
| 1461 | def info(self) -> _InfoType: |
| 1462 | if self._connection_record is None: |
| 1463 | return {} |
| 1464 | else: |
| 1465 | return self._connection_record.info |
| 1466 | |
| 1467 | @util.ro_non_memoized_property |
| 1468 | def record_info(self) -> Optional[_InfoType]: |
no outgoing calls
no test coverage detected