Home
last modified time | relevance | path

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

/third_party/python/Lib/zoneinfo/
D_tzpath.py8 tzpaths = to
9 if tzpaths is not None:
10 if isinstance(tzpaths, (str, bytes)):
16 if not all(map(os.path.isabs, tzpaths)):
17 raise ValueError(_get_invalid_paths_message(tzpaths))
18 base_tzpath = tzpaths
53 def _get_invalid_paths_message(tzpaths): argument
54 invalid_paths = (path for path in tzpaths if not os.path.isabs(path))
/third_party/python/
Dsetup.py350 tzpaths = base_tzpath.split(os.pathsep)
351 bad_paths = [tzpath for tzpath in tzpaths if not os.path.isabs(tzpath)]