Instances are replaced with an appropriate value in Enum class suites.
| 163 | _auto_null = _auto_null() |
| 164 | |
| 165 | class auto: |
| 166 | """ |
| 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 |
| 174 | |
| 175 | class property(DynamicClassAttribute): |
| 176 | """ |
no outgoing calls
searching dependent graphs…