SystemExit
Python 3.11.2: /usr/bin/python
Sun Sep 14 23:39:43 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/python3/dist-packages/nose/__pycache__/__main__.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 = '__main__.cpython-311', path = '/home/www/public_html/python3/dist-packages/nose/__pycache__/__main__.cpython-311.pyc'
 /usr/lib/python3.11/imp.py in load_compiled(name='__main__.cpython-311', pathname='/home/www/public_html/python3/dist-packages/nose/__pycache__/__main__.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='__main__.cpython-311', loader=<...kages/nose/__pycache__/__main__.cpython-311.pyc')
 /usr/bin/<frozen importlib._bootstrap> in _load(spec=ModuleSpec(name='__main__.cpython-311', loader=<...kages/nose/__pycache__/__main__.cpython-311.pyc'))
 /usr/bin/<frozen importlib._bootstrap> in _load_unlocked(spec=ModuleSpec(name='__main__.cpython-311', loader=<...kages/nose/__pycache__/__main__.cpython-311.pyc'))
 /usr/bin/<frozen importlib._bootstrap_external> in exec_module(self=<imp._LoadCompiledCompatibility object>, module=<module '__main__.cpython-311' from '/home/www/p...kages/nose/__pycache__/__main__.cpython-311.pyc'>)
 /usr/bin/<frozen importlib._bootstrap> in _call_with_frames_removed(f=<built-in function exec>, *args=(<code object <module> at 0x7f6411317dd0, file "/.../python3/dist-packages/nose/__main__.py", line 1>, {'__builtins__': {'ArithmeticError': <class 'ArithmeticError'>, 'AssertionError': <class 'AssertionError'>, 'AttributeError': <class 'AttributeError'>, 'BaseException': <class 'BaseException'>, 'BaseExceptionGroup': <class 'BaseExceptionGroup'>, 'BlockingIOError': <class 'BlockingIOError'>, 'BrokenPipeError': <class 'BrokenPipeError'>, 'BufferError': <class 'BufferError'>, 'BytesWarning': <class 'BytesWarning'>, 'ChildProcessError': <class 'ChildProcessError'>, ...}, '__cached__': '/home/www/public_html/python3/dist-packages/nose/__pycache__/__main__.cpython-311.pyc', '__doc__': None, '__file__': '/home/www/public_html/python3/dist-packages/nose/__pycache__/__main__.cpython-311.pyc', '__loader__': <imp._LoadCompiledCompatibility object>, '__name__': '__main__.cpython-311', '__package__': '__main__', '__spec__': ModuleSpec(name='__main__.cpython-311', loader=<...kages/nose/__pycache__/__main__.cpython-311.pyc'), 'run_exit': <class 'nose.core.TestProgram'>, 'sys': <module 'sys' (built-in)>}), **kwds={})
 /home/www/public_html/python3/dist-packages/nose/__main__.py in <module>
      4 
      5 if sys.argv[0].endswith('__main__.py'):
      6     sys.argv[0] = '%s -m nose' % sys.executable
      7 
=>    8 run_exit()
run_exit = <class 'nose.core.TestProgram'>
 /usr/lib/python3/dist-packages/nose/core.py in __init__(self=<nose.core.TestProgram object>, module=None, defaultTest='.', argv=None, testRunner=None, testLoader=None, env=environ({'PATH': '/usr/local/bin:/usr/bin:/bin', 'LC_CTYPE': 'C.UTF-8'}), config=Config(addPaths=True, args=(), configSection='no...1, where=(), worker=False, workingDir='/usr/bin'), suite=None, exit=True, plugins=None, addplugins=None)
    116         if version >= (2,7) and version != (3,0):
    117             extra_args['exit'] = exit
=>  118         unittest.TestProgram.__init__(
=>  119             self, module=module, defaultTest=defaultTest,
=>  120             argv=argv, testRunner=testRunner, testLoader=testLoader,
global unittest = <module 'unittest' from '/usr/lib/python3.11/unittest/__init__.py'>, unittest.TestProgram = <class 'unittest.main.TestProgram'>, unittest.TestProgram.__init__ = <function TestProgram.__init__>, self = <nose.core.TestProgram object>, module = None, defaultTest = '.', argv = None, testRunner = None, testLoader = None, extra_args = {'exit': True}
 /usr/lib/python3.11/unittest/main.py in __init__(self=<nose.core.TestProgram object>, module=None, defaultTest='.', argv=['/usr/lib/cm4all/launcher/fcgi.py'], testRunner=None, testLoader=None, exit=True, verbosity=1, failfast=None, catchbreak=None, buffer=None, warnings=None, tb_locals=False)
    100         self.progName = os.path.basename(argv[0])
    101         self.parseArgs(argv)
=>  102         self.runTests()
    103 
    104     def usageExit(self, msg=None):
self = <nose.core.TestProgram object>, self.runTests = <bound method TestProgram.runTests of <nose.core.TestProgram object>>
 /usr/lib/python3/dist-packages/nose/core.py in runTests(self=<nose.core.TestProgram object>)
    208         self.success = result.wasSuccessful()
    209         if self.exit:
=>  210             sys.exit(not self.success)
    211         return self.success
    212 
global sys = <module 'sys' (built-in)>, sys.exit = <built-in function exit>, self = <nose.core.TestProgram object>, self.success = True

SystemExit: False
      add_note = <built-in method add_note of SystemExit object>
      args = (False,)
      code = False
      with_traceback = <built-in method with_traceback of SystemExit object>