opt
/
hc_python
/
lib
/
python3.12
/
site-packages
/
virtualenv
/
create
/
via_global_ref
/
builtin
/
Go to Home Directory
+
Upload
Create File
root@0UT1S:~$
Execute
By Order of Mr.0UT1S
[DIR] ..
N/A
[DIR] __pycache__
N/A
[DIR] cpython
N/A
[DIR] graalpy
N/A
[DIR] pypy
N/A
__init__.py
0 bytes
Rename
Delete
builtin_way.py
520 bytes
Rename
Delete
ref.py
5.31 KB
Rename
Delete
via_global_self_do.py
4.33 KB
Rename
Delete
from __future__ import annotations from abc import ABC from virtualenv.create.creator import Creator from virtualenv.create.describe import Describe class VirtualenvBuiltin(Creator, Describe, ABC): """A creator that does operations itself without delegation, if we can create it we can also describe it.""" def __init__(self, options, interpreter) -> None: Creator.__init__(self, options, interpreter) Describe.__init__(self, self.dest, interpreter) __all__ = [ "VirtualenvBuiltin", ]
Save