File Explorer

/proc/thread-self/root/proc/self/root/proc/self/task/21/root/lib64/python3.9/zoneinfo

This explorer reads the filesystem of the server it runs on, so /workspace/user isn't present here. Browsing and the terminal still work against this server's own disk from /.

__init__.py703 B · 32 lines
__all__ = [    "ZoneInfo",    "reset_tzpath",    "available_timezones",    "TZPATH",    "ZoneInfoNotFoundError",    "InvalidTZPathWarning",] from . import _tzpathfrom ._common import ZoneInfoNotFoundError try:    from _zoneinfo import ZoneInfoexcept ImportError:  # pragma: nocover    from ._zoneinfo import ZoneInfo reset_tzpath = _tzpath.reset_tzpathavailable_timezones = _tzpath.available_timezonesInvalidTZPathWarning = _tzpath.InvalidTZPathWarning  def __getattr__(name):    if name == "TZPATH":        return _tzpath.TZPATH    else:        raise AttributeError(f"module {__name__!r} has no attribute {name!r}")  def __dir__():    return sorted(list(globals()) + ["TZPATH"])