x3x3x3x_5h3ll
— 53cur3 — 5h3ll_1d —
Linux vps-10654784.cedaps.org.br 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
  INFO SERVER : Apache PHP : 7.4.33
/opt/alt/python311/lib64/python3.11/asyncio/
162.240.100.168

 
[ NAME ] [ SIZE ] [ PERM ] [ DATE ] [ ACTN ]
+FILE +DIR
__pycache__ dir drwxr-xr-x 2024-06-09 22:18 R D
__init__.py 1.16 KB -rw-r--r-- 2024-04-02 08:25 R E G D
__main__.py 3.265 KB -rw-r--r-- 2024-04-02 08:25 R E G D
base_events.py 73.617 KB -rw-r--r-- 2024-04-02 08:25 R E G D
base_futures.py 1.957 KB -rw-r--r-- 2024-04-02 08:25 R E G D
base_subprocess.py 8.661 KB -rw-r--r-- 2024-04-02 08:25 R E G D
base_tasks.py 2.582 KB -rw-r--r-- 2024-04-02 08:25 R E G D
constants.py 1.295 KB -rw-r--r-- 2024-04-02 08:25 R E G D
coroutines.py 3.32 KB -rw-r--r-- 2024-04-02 08:25 R E G D
events.py 27.97 KB -rw-r--r-- 2024-04-02 08:25 R E G D
exceptions.py 1.711 KB -rw-r--r-- 2024-04-02 08:25 R E G D
format_helpers.py 2.348 KB -rw-r--r-- 2024-04-02 08:25 R E G D
futures.py 13.879 KB -rw-r--r-- 2024-04-02 08:25 R E G D
locks.py 18.568 KB -rw-r--r-- 2024-04-02 08:25 R E G D
log.py 0.121 KB -rw-r--r-- 2024-04-02 08:25 R E G D
mixins.py 0.47 KB -rw-r--r-- 2024-04-02 08:25 R E G D
proactor_events.py 32.484 KB -rw-r--r-- 2024-04-02 08:25 R E G D
protocols.py 6.794 KB -rw-r--r-- 2024-04-02 08:25 R E G D
queues.py 7.787 KB -rw-r--r-- 2024-04-02 08:25 R E G D
runners.py 6.682 KB -rw-r--r-- 2024-04-02 08:25 R E G D
selector_events.py 44.336 KB -rw-r--r-- 2024-04-02 08:25 R E G D
sslproto.py 30.995 KB -rw-r--r-- 2024-04-02 08:25 R E G D
staggered.py 5.852 KB -rw-r--r-- 2024-04-02 08:25 R E G D
streams.py 26.858 KB -rw-r--r-- 2024-04-02 08:25 R E G D
subprocess.py 7.502 KB -rw-r--r-- 2024-04-02 08:25 R E G D
taskgroups.py 8.272 KB -rw-r--r-- 2024-04-02 08:25 R E G D
tasks.py 33.626 KB -rw-r--r-- 2024-04-02 08:25 R E G D
threads.py 0.771 KB -rw-r--r-- 2024-04-02 08:25 R E G D
timeouts.py 5.196 KB -rw-r--r-- 2024-04-02 08:25 R E G D
transports.py 10.471 KB -rw-r--r-- 2024-04-02 08:25 R E G D
trsock.py 2.417 KB -rw-r--r-- 2024-04-02 08:25 R E G D
unix_events.py 50.698 KB -rw-r--r-- 2024-04-02 08:25 R E G D
windows_events.py 33.878 KB -rw-r--r-- 2024-04-02 08:25 R E G D
windows_utils.py 4.941 KB -rw-r--r-- 2024-04-02 08:25 R E G D
REQUEST EXIT
"""Selector event loop for Unix with signal handling.""" import errno import io import itertools import os import selectors import signal import socket import stat import subprocess import sys import threading import warnings from . import base_events from . import base_subprocess from . import constants from . import coroutines from . import events from . import exceptions from . import futures from . import selector_events from . import tasks from . import transports from .log import logger __all__ = ( 'SelectorEventLoop', 'AbstractChildWatcher', 'SafeChildWatcher', 'FastChildWatcher', 'PidfdChildWatcher', 'MultiLoopChildWatcher', 'ThreadedChildWatcher', 'DefaultEventLoopPolicy', ) if sys.platform == 'win32': # pragma: no cover raise ImportError('Signals are not really supported on Windows') def _sighandler_noop(signum, frame): """Dummy signal handler.""" pass def waitstatus_to_exitcode(status): try: return os.waitstatus_to_exitcode(status) except ValueError: # The child exited, but we don't understand its status. # This shouldn't happen, but if it does, let's just # return that status; perhaps that helps debug it. return status class _UnixSelectorEventLoop(selector_events.BaseSelectorEventLoop): """Unix event loop. Adds signal handling and UNIX Domain Socket support to SelectorEventLoop. """ def __init__(self, selector=None): super().__init__(selector) self._signal_handlers = {} def close(self): super().close() if not sys.is_finalizing(): for sig in list(self._signal_handlers): self.remove_signal_handler(sig) else: if self._signal_handlers: warnings.warn(f"Closing the loop {self!r} " f"on interpreter shutdown " f"stage, skipping s