| 196 | |
| 197 | # Markers for the various kinds of fields and pseudo-fields. |
| 198 | class _FIELD_BASE: |
| 199 | def __init__(self, name): |
| 200 | self.name = name |
| 201 | def __repr__(self): |
| 202 | return self.name |
| 203 | _FIELD = _FIELD_BASE('_FIELD') |
| 204 | _FIELD_CLASSVAR = _FIELD_BASE('_FIELD_CLASSVAR') |
| 205 | _FIELD_INITVAR = _FIELD_BASE('_FIELD_INITVAR') |
no outgoing calls
no test coverage detected
searching dependent graphs…