(self, value=_auto_null)
| 176 | Instances are replaced with an appropriate value in Enum class suites. |
| 177 | """ |
| 178 | def __init__(self, value=_auto_null): |
| 179 | self.value = value |
| 180 | |
| 181 | def __repr__(self): |
| 182 | return "auto(%r)" % self.value |
no outgoing calls
no test coverage detected