PATH:
opt
/
cloudlinux
/
venv
/
lib
/
python3.11
/
site-packages
/
virtualenv
/
create
/
via_global_ref
/
builtin
from abc import ABCMeta from virtualenv.create.creator import Creator from virtualenv.create.describe import Describe class VirtualenvBuiltin(Creator, Describe, metaclass=ABCMeta): """A creator that does operations itself without delegation, if we can create it we can also describe it""" def __init__(self, options, interpreter): Creator.__init__(self, options, interpreter) Describe.__init__(self, self.dest, interpreter) __all__ = [ "VirtualenvBuiltin", ]
[+]
pypy
[+]
..
[+]
__pycache__
[-] ref.py
[open]
[+]
cpython
[-] via_global_self_do.py
[open]
[+]
python2
[-] builtin_way.py
[open]
[-] __init__.py
[open]