(exception)
| 36 | _WINERROR_CANT_RESOLVE_FILENAME) |
| 37 | |
| 38 | def _ignore_error(exception): |
| 39 | return (getattr(exception, 'errno', None) in _IGNORED_ERRNOS or |
| 40 | getattr(exception, 'winerror', None) in _IGNORED_WINERRORS) |
| 41 | |
| 42 | |
| 43 | def _is_wildcard_pattern(pat): |
no outgoing calls
no test coverage detected