⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.24
Server IP:
50.6.168.112
Server:
Linux server-617809.webnetzimbabwe.com 5.14.0-570.25.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 9 04:57:09 EDT 2025 x86_64
Server Software:
Apache
PHP Version:
8.4.10
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
lib64
/
python3.9
/
venv
/
__pycache__
/
View File Name :
__init__.cpython-39.opt-1.pyc
a ÕDOgC_ ã @ sÔ d Z ddlZddlZddlZddlZddlZddlZddlZddlZdZ e e¡ZG dd„ dƒZ ddd„Zdd d „ZedkrÐdZzeƒ dZW n6 eyÄ Z zed e ejd W Y dZ[n dZ[0 0 e e¡ dS )z› Virtual environment (venv) package for Python. Based on PEP 405. Copyright (C) 2011-2014 Vinay Sajip. Licensed to the PSF under a contributor agreement. é N)ÚpipZ setuptoolsc @ s’ e Zd ZdZd dd„Zdd„ Zdd „ Zd d„ Zdd „ Ze j dkrLd!dd„Zn d"dd„Zdd„ Zdd„ Z dd„ Zdd„ Zdd„ Zdd„ Zdd„ ZdS )#Ú EnvBuilderaâ This class exists to allow virtual environment creation to be customized. The constructor parameters determine the builder's behaviour when called upon to create a virtual environment. By default, the builder makes the system (global) site-packages dir *un*available to the created environment. If invoked using the Python -m option, the default is to use copying on Windows platforms but symlinks elsewhere. If instantiated some other way, the default is to *not* use symlinks. :param system_site_packages: If True, the system (global) site-packages dir is available to created environments. :param clear: If True, delete the contents of the environment directory if it already exists, before environment creation. :param symlinks: If True, attempt to symlink rather than copy files into virtual environment. :param upgrade: If True, upgrade an existing virtual environment. :param with_pip: If True, ensure pip is installed in the virtual environment :param prompt: Alternative terminal prefix for the environment. :param upgrade_deps: Update the base venv modules to the latest on PyPI FNc C sF || _ || _|| _|| _|| _|dkr6tj t ¡ ¡}|| _ || _ d S )NÚ.)Úsystem_site_packagesÚclearÚsymlinksÚupgradeÚwith_pipÚosÚpathÚbasenameÚgetcwdÚpromptÚupgrade_deps)Úselfr r r r r r r © r ú%/usr/lib64/python3.9/venv/__init__.pyÚ__init__/ s zEnvBuilder.__init__c C sˆ t j |¡}| |¡}| j}d| _| |¡ | |¡ | jrF| |¡ | j s`| |¡ | |¡ |rtd| _| |¡ | jr„| |¡ dS )zŠ Create a virtual environment in a directory. :param env_dir: The target directory to create an environment in. FTN)r r ÚabspathÚensure_directoriesr Úcreate_configurationÚsetup_pythonr Ú _setup_pipr Ú setup_scriptsÚ post_setupr Úupgrade_dependencies)r Úenv_dirÚcontextZtrue_system_site_packagesr r r Úcreate<