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