Indicates that an invalid value was used as a mock spec.
| 43 | |
| 44 | |
| 45 | class InvalidSpecError(Exception): |
| 46 | """Indicates that an invalid value was used as a mock spec.""" |
| 47 | |
| 48 | |
| 49 | _builtins = {name for name in dir(builtins) if not name.startswith('_')} |
no outgoing calls
no test coverage detected
searching dependent graphs…