(self, text)
| 1151 | return self.complete(text)[1] |
| 1152 | |
| 1153 | def _clean_glob(self, text): |
| 1154 | return self.glob("%s*" % text) |
| 1155 | |
| 1156 | def _clean_glob_win32(self,text): |
| 1157 | return [f.replace("\\","/") |
nothing calls this directly
no outgoing calls
no test coverage detected