(self, glob_pattern)
| 3274 | detecting wheels created by pip or cubuildwheel etc. |
| 3275 | ''' |
| 3276 | def __init__(self, glob_pattern): |
| 3277 | # Find current matches of <glob_pattern>. |
| 3278 | self.glob_pattern = glob_pattern |
| 3279 | self.items0 = self._items() |
| 3280 | def get(self): |
| 3281 | ''' |
| 3282 | Returns list of new matches of <glob_pattern> - paths of files that |