golden hour
/opt/alt/python37/lib/python3.7/site-packages/virtualenv/create/via_global_ref/builtin
⬆️ Go Up
Upload
File/Folder
Size
Actions
__init__.py
0 B
Del
OK
__pycache__
-
Del
OK
builtin_way.py
546 B
Del
OK
cpython
-
Del
OK
pypy
-
Del
OK
python2
-
Del
OK
ref.py
5.35 KB
Del
OK
via_global_self_do.py
4.45 KB
Del
OK
Edit: builtin_way.py
from __future__ import absolute_import, unicode_literals from abc import ABCMeta from six import add_metaclass from virtualenv.create.creator import Creator from virtualenv.create.describe import Describe @add_metaclass(ABCMeta) class VirtualenvBuiltin(Creator, Describe): """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)
Save