subclass the append method to handle wildcards, recursing and file filter.
(self, pattern, recursive = False, file_only = False)
| 275 | self[:] = [item for time, item in flist_copy] |
| 276 | |
| 277 | def append(self, pattern, recursive = False, file_only = False): |
| 278 | """ |
| 279 | subclass the append method to handle wildcards, recursing |
| 280 | and file filter. |
| 281 | """ |
| 282 | # expand any wildcards, recurse if asked, filter on files, etc. |
| 283 | temp = self._populate(pattern, recursive, file_only) |
| 284 | # then just append. |
| 285 | super(FSList, self).append(temp) |
| 286 | |
| 287 | def extend(self, pattern, recursive = False, file_only = False): |
| 288 | """ |
no test coverage detected