Get all files labeled with ``label``
(self, label)
| 826 | touch(os.path.join(self.chroot, dst)) |
| 827 | |
| 828 | def get(self, label): |
| 829 | # type: (Optional[str]) -> Set[str] |
| 830 | """Get all files labeled with ``label``""" |
| 831 | return self.filesets.get(label, set()) |
| 832 | |
| 833 | def files(self): |
| 834 | # type: () -> Set[str] |
no outgoing calls