Searched refs:_join (Results 1 – 8 of 8) sorted by relevance
/third_party/python/Lib/distutils/tests/ |
D | test_util.py | 175 def _join(path): function 177 os.path.join = _join 184 def _join(*path): function 186 os.path.join = _join 202 def _join(*path): function 204 os.path.join = _join 221 def _join(*path): function 223 os.path.join = _join
|
/third_party/python/Lib/ |
D | glob.py | 58 if _lexists(_join(root_dir, pathname), dir_fd): 62 if _isdir(_join(root_dir, dirname), dir_fd): 86 for name in glob_in_dir(_join(root_dir, dirname), basename, dir_fd, dironly): 101 if _lexists(_join(dirname, basename), dir_fd): 172 path = _join(dirname, x) if dirname else x 174 yield _join(x, y) 199 def _join(dirname, basename): function
|
/third_party/python/Lib/unittest/test/ |
D | test_program.py | 392 def _join(name): function 394 argv = ['progname', _join('foo/bar/baz.py'), _join('green\\red.py')]
|
/third_party/python/Lib/tkinter/ |
D | ttk.py | 29 from tkinter import _flatten, _join, _stringify, _splitdict 56 value = _join(value) 123 imagespec = _join(_mapdict_values(args[1:])) 132 statemap = _join(_mapdict_values(args[2:]))
|
D | __init__.py | 56 def _join(value): function 69 value = '{%s}' % _join(value)
|
/third_party/python/Lib/tkinter/test/test_tkinter/ |
D | test_images.py | 163 return tkinter._join(args)
|
/third_party/python/Lib/tkinter/test/ |
D | widget_tests.py | 57 expected = tkinter._join(expected)
|
/third_party/python/Lib/test/ |
D | test_tcl.py | 709 join = tkinter._join
|