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