| 174 | # factory will be used. This is given a nice repr() which will appear |
| 175 | # in the function signature of dataclasses' constructors. |
| 176 | class _HAS_DEFAULT_FACTORY_CLASS: |
| 177 | def __repr__(self): |
| 178 | return '<factory>' |
| 179 | _HAS_DEFAULT_FACTORY = _HAS_DEFAULT_FACTORY_CLASS() |
| 180 | |
| 181 | # A sentinel object to detect if a parameter is supplied or not. Use |
no outgoing calls
no test coverage detected
searching dependent graphs…