/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", ]
.
Edit
..
Edit
__init__.py
Edit
__pycache__
Edit
builtin_way.py
Edit
cpython
Edit
pypy
Edit
python2
Edit
ref.py
Edit
via_global_self_do.py
Edit