(self,text)
| 1154 | return self.glob("%s*" % text) |
| 1155 | |
| 1156 | def _clean_glob_win32(self,text): |
| 1157 | return [f.replace("\\","/") |
| 1158 | for f in self.glob("%s*" % text)] |
| 1159 | |
| 1160 | def file_matches(self, text): |
| 1161 | """Match filenames, expanding ~USER type strings. |
nothing calls this directly
no outgoing calls
no test coverage detected