MCPcopy Create free account
hub / github.com/ipython/ipython / _clean_glob_win32

Method _clean_glob_win32

IPython/core/completer.py:1156–1158  ·  view source on GitHub ↗
(self,text)

Source from the content-addressed store, hash-verified

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.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected