(self, assigned_name: str, obj: Any)
| 3254 | return result |
| 3255 | |
| 3256 | def _is_userland_descriptor(self, assigned_name: str, obj: Any) -> bool: |
| 3257 | if isinstance( |
| 3258 | obj, |
| 3259 | ( |
| 3260 | _MappedAttribute, |
| 3261 | instrumentation.ClassManager, |
| 3262 | expression.ColumnElement, |
| 3263 | ), |
| 3264 | ): |
| 3265 | return False |
| 3266 | else: |
| 3267 | return assigned_name not in self._dataclass_fields |
| 3268 | |
| 3269 | @HasMemoized.memoized_attribute |
| 3270 | def _dataclass_fields(self): |
no outgoing calls