X7ROOT File Manager
Current Path:
/opt/hc_python/lib/python3.12/site-packages/virtualenv/app_data
opt
/
hc_python
/
lib
/
python3.12
/
site-packages
/
virtualenv
/
app_data
/
📁
..
📄
__init__.py
(1.43 KB)
📁
__pycache__
📄
base.py
(2.03 KB)
📄
na.py
(1.46 KB)
📄
read_only.py
(1.09 KB)
📄
via_disk_folder.py
(5.34 KB)
📄
via_tempdir.py
(811 B)
Editing: via_tempdir.py
from __future__ import annotations import logging from tempfile import mkdtemp from virtualenv.util.path import safe_delete from .via_disk_folder import AppDataDiskFolder LOGGER = logging.getLogger(__name__) class TempAppData(AppDataDiskFolder): transient = True can_update = False def __init__(self) -> None: super().__init__(folder=mkdtemp()) LOGGER.debug("created temporary app data folder %s", self.lock.path) def reset(self): """This is a temporary folder, is already empty to start with.""" def close(self): LOGGER.debug("remove temporary app data folder %s", self.lock.path) safe_delete(self.lock.path) def embed_update_log(self, distribution, for_py_version): raise NotImplementedError __all__ = [ "TempAppData", ]
Upload File
Create Folder