String that doesn't quote its repr.
| 174 | |
| 175 | |
| 176 | class _rstr(str): |
| 177 | """String that doesn't quote its repr.""" |
| 178 | def __repr__(self): |
| 179 | return self |
| 180 | |
| 181 | |
| 182 | class _ExecutableTarget: |
no outgoing calls
no test coverage detected
searching dependent graphs…