(self)
| 573 | return self._permanent |
| 574 | |
| 575 | def isNotPermanent(self): |
| 576 | return not self.isPermanent() |
| 577 | |
| 578 | def sanitizeFilename(self, filename, blacklist="<>:/\\|?*\"", placeholder="_"): |
| 579 | return ''.join([c if c not in blacklist and ord(c) >= 32 else placeholder for c in filename]) |
no test coverage detected