subclass the extend method to handle wildcards, recursing and file filter.
(self, pattern, recursive = False, file_only = False)
| 285 | super(FSList, self).append(temp) |
| 286 | |
| 287 | def extend(self, pattern, recursive = False, file_only = False): |
| 288 | """ |
| 289 | subclass the extend method to handle wildcards, recursing |
| 290 | and file filter. |
| 291 | """ |
| 292 | # expand any wildcards, recurse if asked, filter on files, etc. |
| 293 | temp = self._populate(pattern, recursive, file_only) |
| 294 | # then extend. |
| 295 | super(FSList, self).extend(temp) |
| 296 | |
| 297 | |
| 298 | # methods used only internally |
no test coverage detected