X7ROOT File Manager
Current Path:
/opt/cloudlinux/venv/lib/python3.11/site-packages/guppy/heapy
opt
/
cloudlinux
/
venv
/
lib
/
python3.11
/
site-packages
/
guppy
/
heapy
/
ðŸ“
..
📄
Classifiers.py
(45.16 KB)
📄
Console.py
(843 B)
📄
Doc.py
(7.81 KB)
📄
ImpSet.py
(870 B)
📄
Monitor.py
(14.5 KB)
📄
OutputHandling.py
(11.52 KB)
📄
Part.py
(23.25 KB)
📄
Path.py
(14.19 KB)
📄
Prof.py
(90.38 KB)
📄
RM.py
(119 B)
📄
RefPat.py
(18.18 KB)
📄
Remote.py
(15.31 KB)
📄
RemoteConstants.py
(209 B)
📄
Spec.py
(48.59 KB)
📄
Target.py
(205 B)
📄
UniSet.py
(66.5 KB)
📄
Use.py
(23.05 KB)
📄
View.py
(19.05 KB)
📄
__init__.py
(209 B)
ðŸ“
__pycache__
📄
heapyc.cpython-311-x86_64-linux-gnu.so
(154.55 KB)
📄
pbhelp.py
(17.4 KB)
ðŸ“
test
Editing: 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()
Upload File
Create Folder