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