(self, value=_auto_null)
| 167 | Instances are replaced with an appropriate value in Enum class suites. |
| 168 | """ |
| 169 | def __init__(self, value=_auto_null): |
| 170 | self.value = value |
| 171 | |
| 172 | def __repr__(self): |
| 173 | return "auto(%r)" % self.value |
no outgoing calls
no test coverage detected