OXIESEC PANEL
- Current Dir:
/
/
usr
/
local
/
lib
/
python3.6
/
dist-packages
/
virtualenv
/
create
/
via_global_ref
/
builtin
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/09/2024 06:58:27 AM
rwxr-xr-x
📄
__init__.py
0 bytes
05/09/2024 06:58:24 AM
rw-r--r--
📁
__pycache__
-
05/09/2024 06:58:27 AM
rwxr-xr-x
📄
builtin_way.py
493 bytes
05/09/2024 06:58:24 AM
rw-r--r--
📁
cpython
-
05/09/2024 06:58:27 AM
rwxr-xr-x
📁
pypy
-
05/09/2024 06:58:27 AM
rwxr-xr-x
📁
python2
-
05/09/2024 06:58:27 AM
rwxr-xr-x
📄
ref.py
5.25 KB
05/09/2024 06:58:24 AM
rw-r--r--
📄
via_global_self_do.py
4.24 KB
05/09/2024 06:58:24 AM
rw-r--r--
Editing: builtin_way.py
Close
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", ]