PATH:
opt
/
cloudlinux
/
venv
/
lib
/
python3.11
/
site-packages
/
pytest_subprocess
import asyncio import io import os from typing import Sequence from typing import Union from .utils import Any from .utils import Command from .utils import Program OPTIONAL_TEXT = Union[str, bytes, None] OPTIONAL_TEXT_OR_ITERABLE = Union[ str, bytes, None, Sequence[Union[str, bytes]], ] BUFFER = Union[io.BytesIO, io.StringIO, asyncio.StreamReader] ARGUMENT = Union[str, Any, os.PathLike, Program] COMMAND = Union[Sequence[ARGUMENT], str, Command]
[-] fixtures.py
[edit]
[-] utils.py
[edit]
[+]
__pycache__
[-] exceptions.py
[edit]
[-] asyncio_subprocess.py
[edit]
[-] process_recorder.py
[edit]
[-] types.py
[edit]
[-] fake_process.py
[edit]
[-] process_dispatcher.py
[edit]
[-] __init__.py
[edit]
[+]
..
[-] fake_popen.py
[edit]
[-] py.typed
[edit]