Home
last modified time | relevance | path

Searched refs:add_sep (Results 1 – 2 of 2) sorted by relevance

/third_party/python/Modules/
Dgetpath.c288 int add_sep = (len > 0 && path[len - 1] != SEP); in joinpath2() local
289 len += add_sep; in joinpath2()
298 if (add_sep) { in joinpath2()
/third_party/python/patches/
Dcpython_mingw_v3.10.2.patch2765 - int add_sep = (len > 0 && path[len - 1] != SEP);
2766 + int add_sep = (len > 0 && !_Py_issep(path[len - 1]));
2767 len += add_sep;