| 183 | return ", ".join(names) |
| 184 | |
| 185 | class _Unknown: |
| 186 | def __repr__(self): |
| 187 | return "<unknown>" |
| 188 | |
| 189 | # Sentinel to represent values that cannot be calculated |
| 190 | UNKNOWN = _Unknown() |
no outgoing calls
no test coverage detected
searching dependent graphs…