MCPcopy Create free account
hub / github.com/fabioz/PyDev.Debugger / get_path_with_real_case

Function get_path_with_real_case

pydevd_file_utils.py:274–282  ·  view source on GitHub ↗
(filename)

Source from the content-addressed store, hash-verified

272elif IS_JYTHON and IS_WINDOWS:
273
274 def get_path_with_real_case(filename):
275 if filename.startswith("<"):
276 return filename
277
278 from java.io import File # noqa
279
280 f = File(filename)
281 ret = f.getCanonicalPath()
282 return ret
283
284elif IS_MAC:
285

Calls 1

_resolve_listing_partsFunction · 0.85