Return a tuple containing compressed filename variations.
(self, filename)
| 292 | return filename, None |
| 293 | |
| 294 | def _possible_names(self, filename): |
| 295 | """Return a tuple containing compressed filename variations.""" |
| 296 | names = [filename] |
| 297 | if not self._iszip(filename): |
| 298 | for zipext in _file_openers.keys(): |
| 299 | if zipext: |
| 300 | names.append(filename+zipext) |
| 301 | return names |
| 302 | |
| 303 | def _isurl(self, path): |
| 304 | """Test if path is a net location. Tests the scheme and netloc.""" |