Searched refs:genericpath (Results 1 - 4 of 4) sorted by relevance
/third_party/python/Lib/ |
H A D | posixpath.py | 28 import genericpath namespace 29 from genericpath import * 90 genericpath._check_arg_types('join', a, *p) 125 return genericpath._splitext(p, sep, None, extsep) 126 splitext.__doc__ = genericpath._splitext.__doc__ 518 genericpath._check_arg_types('relpath', path, start) 561 genericpath._check_arg_types('commonpath', *paths)
|
H A D | ntpath.py | 23 import genericpath namespace 24 from genericpath import * 147 genericpath._check_arg_types('join', path, *paths) 234 return genericpath._splitext(p, b'\\', b'/', b'.') 236 return genericpath._splitext(p, '\\', '/', '.') 237 splitext.__doc__ = genericpath._splitext.__doc__ 783 genericpath._check_arg_types('relpath', path, start) 845 genericpath._check_arg_types('commonpath', *paths) 850 # The genericpath.isdir implementation uses os.stat and checks the mode 856 # Use genericpath [all...] |
/third_party/python/Python/ |
H A D | frozen.c | 95 {"genericpath", NULL, 0, false, GET_CODE(genericpath)},
|
/third_party/python/Lib/test/ |
H A D | test_genericpath.py | 2 Tests common to genericpath, ntpath and posixpath 5 import genericpath namespace 148 if self.pathmodule is not genericpath: 317 pathmodule = genericpath
|
Completed in 4 milliseconds