(self, attr, val=None)
| 1211 | return val in self.__rdict__ # type: ignore |
| 1212 | |
| 1213 | def get(self, attr, val=None): |
| 1214 | # type: (str, Optional[Any]) -> Any |
| 1215 | return self.__rdict__.get(attr, val) # type: ignore |
| 1216 | |
| 1217 | def __repr__(self): |
| 1218 | # type: () -> str |
no outgoing calls
no test coverage detected