ModuleNotFoundError
Python 3.11.2: /usr/bin/python
Thu Jul 3 19:50:31 2025

A problem occurred in a Python script. Here is the sequence of function calls leading up to the error, in the order they occurred.

 /usr/lib/python3/dist-packages/flup/server/fcgi_base.py in run(self=<flup.server.fcgi_base.Request object>)
    565         """Runs the handler, flushes the streams, and ends the request."""
    566         try:
=>  567             protocolStatus, appStatus = self.server.handler(self)
    568         except:
    569             output = io.StringIO()
protocolStatus undefined, appStatus undefined, self = <flup.server.fcgi_base.Request object>, self.server = <flup.server.fcgi.WSGIServer object>, self.server.handler = <bound method BaseFCGIServer.handler of <flup.server.fcgi.WSGIServer object>>
 /usr/lib/python3/dist-packages/flup/server/fcgi_base.py in handler(self=<flup.server.fcgi.WSGIServer object>, req=<flup.server.fcgi_base.Request object>)
   1129         try:
   1130             try:
=> 1131                 result = self.application(environ, start_response)
   1132                 try:
   1133                     for data in result:
result = None, self = <flup.server.fcgi.WSGIServer object>, self.application = <function application>, environ = {'CONTENT_LENGTH': '0', 'CONTEXT_DOCUMENT_ROOT': '/home/www/public_html/', 'CONTEXT_PREFIX': '', 'DOCUMENT_ROOT': '/home/www/public_html/', 'GATEWAY_INTERFACE': 'CGI/1.1', 'HTTP_ACCEPT': '*/*', 'HTTP_ACCEPT_ENCODING': 'gzip, br, zstd, deflate', 'HTTP_CACHE_CONTROL': 'max-age=259200', 'HTTP_CONNECTION': 'close', 'HTTP_HOST': 'petkli.de', ...}, start_response = <function BaseFCGIServer.handler.<locals>.start_response>
 /usr/lib/python3/dist-packages/cm4all/fcgi/launcher.py in application(environ={'CONTENT_LENGTH': '0', 'CONTEXT_DOCUMENT_ROOT': '/home/www/public_html/', 'CONTEXT_PREFIX': '', 'DOCUMENT_ROOT': '/home/www/public_html/', 'GATEWAY_INTERFACE': 'CGI/1.1', 'HTTP_ACCEPT': '*/*', 'HTTP_ACCEPT_ENCODING': 'gzip, br, zstd, deflate', 'HTTP_CACHE_CONTROL': 'max-age=259200', 'HTTP_CONNECTION': 'close', 'HTTP_HOST': 'petkli.de', ...}, start_response=<function BaseFCGIServer.handler.<locals>.start_response>)
     15 
     16 def application(environ, start_response):
=>   17     return cache[environ['SCRIPT_FILENAME']](environ, start_response)
     18 
     19 def launch():
global cache = {}, environ = {'CONTENT_LENGTH': '0', 'CONTEXT_DOCUMENT_ROOT': '/home/www/public_html/', 'CONTEXT_PREFIX': '', 'DOCUMENT_ROOT': '/home/www/public_html/', 'GATEWAY_INTERFACE': 'CGI/1.1', 'HTTP_ACCEPT': '*/*', 'HTTP_ACCEPT_ENCODING': 'gzip, br, zstd, deflate', 'HTTP_CACHE_CONTROL': 'max-age=259200', 'HTTP_CONNECTION': 'close', 'HTTP_HOST': 'petkli.de', ...}, start_response = <function BaseFCGIServer.handler.<locals>.start_response>
 /usr/lib/python3/dist-packages/cm4all/fcgi/launcher.py in __missing__(self={}, path='/home/www/public_html/python2/curses/__pycache__/__init__.cpython-311.pyc')
      6         name, ext = os.path.splitext(os.path.split(path)[-1])
      7         if ext in ('.pyc', '.py3c'):
=>    8             mod = imp.load_compiled(name, path)
      9         else:
     10             mod = imp.load_source(name, path)
mod undefined, global imp = <module 'imp' from '/usr/lib/python3.11/imp.py'>, imp.load_compiled = <function load_compiled>, name = '__init__.cpython-311', path = '/home/www/public_html/python2/curses/__pycache__/__init__.cpython-311.pyc'
 /usr/lib/python3.11/imp.py in load_compiled(name='__init__.cpython-311', pathname='/home/www/public_html/python2/curses/__pycache__/__init__.cpython-311.pyc', file=None)
    190         module = _exec(spec, sys.modules[name])
    191     else:
=>  192         module = _load(spec)
    193     # To allow reloading to potentially work, use a non-hacked loader which
    194     # won't rely on a now-closed file object.
module undefined, global _load = <function _load>, spec = ModuleSpec(name='__init__.cpython-311', loader=<...on2/curses/__pycache__/__init__.cpython-311.pyc')
 /usr/bin/<frozen importlib._bootstrap> in _load(spec=ModuleSpec(name='__init__.cpython-311', loader=<...on2/curses/__pycache__/__init__.cpython-311.pyc'))
 /usr/bin/<frozen importlib._bootstrap> in _load_unlocked(spec=ModuleSpec(name='__init__.cpython-311', loader=<...on2/curses/__pycache__/__init__.cpython-311.pyc'))
 /usr/bin/<frozen importlib._bootstrap_external> in exec_module(self=<imp._LoadCompiledCompatibility object>, module=<module '__init__.cpython-311' from '/home/www/p...on2/curses/__pycache__/__init__.cpython-311.pyc'>)
 /usr/bin/<frozen importlib._bootstrap> in _call_with_frames_removed(f=<built-in function exec>, *args=(<code object <module> at 0x7f018f4d5ac0, file "/.../public_html/python2/curses/__init__.py", line 1>, {'ALL_MOUSE_EVENTS': 268435455, 'A_ALTCHARSET': 4194304, 'A_ATTRIBUTES': 4294967040, 'A_BLINK': 524288, 'A_BOLD': 2097152, 'A_CHARTEXT': 255, 'A_COLOR': 65280, 'A_DIM': 1048576, 'A_HORIZONTAL': 33554432, 'A_INVIS': 8388608, ...}), **kwds={})
 /home/www/public_html/python2/curses/__init__.py in <module>
     14 
     15 from _curses import *
=>   16 from curses.wrapper import wrapper
     17 
     18 # Some constants, most notably the ACS_* ones, are only added to the C
curses undefined, wrapper undefined

ModuleNotFoundError: No module named 'curses.wrapper'
      add_note = <built-in method add_note of ModuleNotFoundError object>
      args = ("No module named 'curses.wrapper'",)
      msg = "No module named 'curses.wrapper'"
      name = 'curses.wrapper'
      path = None
      with_traceback = <built-in method with_traceback of ModuleNotFoundError object>