Removes in-place 'list' elements matching the given 'wildcard'.
(self, list, wildcard)
| 952 | self.fail_test(1) |
| 953 | |
| 954 | def __ignore_elements(self, list, wildcard): |
| 955 | """Removes in-place 'list' elements matching the given 'wildcard'.""" |
| 956 | list[:] = filter(lambda x, w=wildcard: not fnmatch.fnmatch(x, w), list) |
| 957 | |
| 958 | def __makedirs(self, path, wait): |
| 959 | """ |
no outgoing calls
no test coverage detected