SILENT KILLERPanel

Current Path: > > opt > cloudlinux > venv > lib > python3.11 > site-packages > guppy > heapy


Operation   : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
Software     : Apache
Server IP    : 162.0.232.56 | Your IP: 216.73.216.111
Domains      : 1034 Domain(s)
Permission   : [ 0755 ]

Files and Folders in: //opt/cloudlinux/venv/lib/python3.11/site-packages/guppy/heapy

NameTypeSizeLast ModifiedActions
__pycache__ Directory - -
test Directory - -
Classifiers.py File 46239 bytes April 17 2025 13:10:58.
Console.py File 843 bytes April 17 2025 13:10:58.
Doc.py File 7996 bytes April 17 2025 13:10:58.
ImpSet.py File 870 bytes April 17 2025 13:10:58.
Monitor.py File 14849 bytes April 17 2025 13:10:58.
OutputHandling.py File 11792 bytes April 17 2025 13:10:58.
Part.py File 23808 bytes April 17 2025 13:10:58.
Path.py File 14532 bytes April 17 2025 13:10:58.
Prof.py File 92546 bytes April 17 2025 13:10:58.
RM.py File 119 bytes April 17 2025 13:10:58.
RefPat.py File 18615 bytes April 17 2025 13:10:58.
Remote.py File 15678 bytes April 17 2025 13:10:58.
RemoteConstants.py File 209 bytes April 17 2025 13:10:58.
Spec.py File 49755 bytes April 17 2025 13:10:58.
Target.py File 205 bytes April 17 2025 13:10:58.
UniSet.py File 68096 bytes April 17 2025 13:10:58.
Use.py File 23601 bytes April 17 2025 13:10:58.
View.py File 19503 bytes April 17 2025 13:10:58.
__init__.py File 209 bytes April 17 2025 13:10:58.
heapyc.cpython-311-x86_64-linux-gnu.so File 158256 bytes April 17 2025 13:11:30.
pbhelp.py File 17819 bytes April 17 2025 13:10:58.

Reading File: //opt/cloudlinux/venv/lib/python3.11/site-packages/guppy/heapy/Console.py

import code


class Console(code.InteractiveConsole):
    EOF_key_sequence = '-'

    def __init__(self, stdin, stdout, locals=None, filename="<console>"):
        self.stdin = stdin
        self.stdout = stdout
        code.InteractiveConsole.__init__(self, locals, filename)

    def raw_input(self, prompt=""):
        """Write a prompt and read a line.

        The returned line does not include the trailing newline.
        When the user enters the EOF key sequence, EOFError is raised.

        """
        self.write(prompt)
        line = self.stdin.readline()
        if not line:
            raise EOFError
        line = line.rstrip()
        if line == self.EOF_key_sequence:
            raise EOFError
        else:
            return line

    def write(self, data):
        self.stdout.write(data)
        self.stdout.flush()

SILENT KILLER Tool