| Server IP : 66.29.146.62 / Your IP : 216.73.216.152 Web Server : LiteSpeed System : Linux premium231.web-hosting.com 4.18.0-553.45.1.lve.el8.x86_64 #1 SMP Wed Mar 26 12:08:09 UTC 2025 x86_64 User : dokkdzvi ( 925) PHP Version : 8.1.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /opt/alt/python37/lib64/python3.7/__pycache__/ |
Upload File : |
B
� f� � @ s` d Z ddlZejdkZddlZddlZddlZddlZddlZddl Z ddl
Z
ddlmZ G dd� de
�ZG dd� de�ZG d d
� d
e�Zer�ddlZddlZddlZG dd� d�ZnDddlZddlZddlZddlZeed
d�Zeed�r�ejZnejZddddddddddddd
dgZe�r�ddlmZm Z m!Z!m"Z"m#Z#m$Z$m%Z%m&Z&m'Z'm(Z(m)Z)m*Z*m+Z+m,Z,m-Z-m.Z.m/Z/m0Z0 e�1ddddd d!d"d#dd$d%d&d'd(d)d*d+d,d-g� G d.d/� d/e2�Z3e�r�dZ4d0d1� Z5ng Z4d2d1� Z5d3Z6d4Z7d5Z8d6d7� Z9d8d9� Z:dd:�d;d�Z;d<d� Z<dd:�d=d�Z=G d>d� de>�Z?dd?dd?d@�dAd�Z@dBdC� ZAdDd� ZBdEd� ZCG dFd� de>�ZDdS )Ga� Subprocesses with accessible I/O streams
This module allows you to spawn processes, connect to their
input/output/error pipes, and obtain their return codes.
For a complete description of this module see the Python documentation.
Main API
========
run(...): Runs a command, waits for it to complete, then returns a
CompletedProcess instance.
Popen(...): A class for flexibly executing a command in a new process
Constants
---------
DEVNULL: Special value that indicates that os.devnull should be used
PIPE: Special value that indicates a pipe should be created
STDOUT: Special value that indicates that stderr should go to stdout
Older API
=========
call(...): Runs a command, waits for it to complete, then returns
the return code.
check_call(...): Same as call() but raises CalledProcessError()
if return code is not 0
check_output(...): Same as check_call() but returns the contents of
stdout instead of a return code
getoutput(...): Runs a command in the shell, waits for it to complete,
then returns the output
getstatusoutput(...): Runs a command in the shell, waits for it to complete,
then returns a (exitcode, output) tuple
� NZwin32)� monotonicc @ s e Zd ZdS )�SubprocessErrorN)�__name__�
__module__�__qualname__� r r �//opt/alt/python37/lib64/python3.7/subprocess.pyr 9 s r c @ s<