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

Function get_long_path_name

IPython/utils/path.py:61–67  ·  view source on GitHub ↗

Expand a path into its long form. On Windows this expands any ~ in the paths. On other platforms, it is a null operation.

(path)

Source from the content-addressed store, hash-verified

59
60
61def get_long_path_name(path):
62 """Expand a path into its long form.
63
64 On Windows this expands any ~ in the paths. On other platforms, it is
65 a null operation.
66 """
67 return _get_long_path_name(path)
68
69
70def unquote_filename(name, win32=(sys.platform=='win32')):

Callers

nothing calls this directly

Calls 1

_get_long_path_nameFunction · 0.85

Tested by

no test coverage detected