gitextract_lqosy3py/ ├── .github/ │ └── workflows/ │ └── main.yml ├── .gitignore ├── .readthedocs.yaml ├── CHANGES.rst ├── COPYRIGHT.txt ├── LICENSES.txt ├── MANIFEST.in ├── README.rst ├── docs/ │ ├── .static/ │ │ └── repoze.css │ ├── Makefile │ ├── api.rst │ ├── conf.py │ ├── configuration.rst │ ├── development.rst │ ├── events.rst │ ├── faq.rst │ ├── glossary.rst │ ├── index.rst │ ├── installing.rst │ ├── introduction.rst │ ├── logging.rst │ ├── plugins.rst │ ├── running.rst │ ├── subprocess.rst │ ├── upgrading.rst │ └── xmlrpc.rst ├── setup.cfg ├── setup.py ├── supervisor/ │ ├── __init__.py │ ├── childutils.py │ ├── compat.py │ ├── confecho.py │ ├── datatypes.py │ ├── dispatchers.py │ ├── events.py │ ├── http.py │ ├── http_client.py │ ├── loggers.py │ ├── medusa/ │ │ ├── CHANGES.txt │ │ ├── LICENSE.txt │ │ ├── README.txt │ │ ├── TODO.txt │ │ ├── __init__.py │ │ ├── asynchat_25.py │ │ ├── asyncore_25.py │ │ ├── auth_handler.py │ │ ├── counter.py │ │ ├── default_handler.py │ │ ├── docs/ │ │ │ ├── README.html │ │ │ ├── async_blurbs.txt │ │ │ ├── data_flow.html │ │ │ ├── programming.html │ │ │ ├── proxy_notes.txt │ │ │ ├── threads.txt │ │ │ └── tkinter.txt │ │ ├── filesys.py │ │ ├── http_date.py │ │ ├── http_server.py │ │ ├── logger.py │ │ ├── producers.py │ │ ├── util.py │ │ └── xmlrpc_handler.py │ ├── options.py │ ├── pidproxy.py │ ├── poller.py │ ├── process.py │ ├── rpcinterface.py │ ├── skel/ │ │ └── sample.conf │ ├── socket_manager.py │ ├── states.py │ ├── supervisorctl.py │ ├── supervisord.py │ ├── templating.py │ ├── tests/ │ │ ├── __init__.py │ │ ├── base.py │ │ ├── fixtures/ │ │ │ ├── donothing.conf │ │ │ ├── example/ │ │ │ │ └── included.conf │ │ │ ├── hello.sh │ │ │ ├── include.conf │ │ │ ├── issue-1054.conf │ │ │ ├── issue-1170a.conf │ │ │ ├── issue-1170b.conf │ │ │ ├── issue-1170c.conf │ │ │ ├── issue-1224.conf │ │ │ ├── issue-1231a.conf │ │ │ ├── issue-1231b.conf │ │ │ ├── issue-1231c.conf │ │ │ ├── issue-1298.conf │ │ │ ├── issue-1483a.conf │ │ │ ├── issue-1483b.conf │ │ │ ├── issue-1483c.conf │ │ │ ├── issue-1596.conf │ │ │ ├── issue-291a.conf │ │ │ ├── issue-550.conf │ │ │ ├── issue-565.conf │ │ │ ├── issue-638.conf │ │ │ ├── issue-663.conf │ │ │ ├── issue-664.conf │ │ │ ├── issue-733.conf │ │ │ ├── issue-835.conf │ │ │ ├── issue-836.conf │ │ │ ├── issue-986.conf │ │ │ ├── listener.py │ │ │ ├── print_env.py │ │ │ ├── spew.py │ │ │ ├── test_1231.py │ │ │ └── unkillable_spew.py │ │ ├── test_childutils.py │ │ ├── test_confecho.py │ │ ├── test_datatypes.py │ │ ├── test_dispatchers.py │ │ ├── test_end_to_end.py │ │ ├── test_events.py │ │ ├── test_http.py │ │ ├── test_http_client.py │ │ ├── test_loggers.py │ │ ├── test_options.py │ │ ├── test_pidproxy.py │ │ ├── test_poller.py │ │ ├── test_process.py │ │ ├── test_rpcinterfaces.py │ │ ├── test_socket_manager.py │ │ ├── test_states.py │ │ ├── test_supervisorctl.py │ │ ├── test_supervisord.py │ │ ├── test_templating.py │ │ ├── test_web.py │ │ └── test_xmlrpc.py │ ├── ui/ │ │ ├── status.html │ │ ├── stylesheets/ │ │ │ └── supervisor.css │ │ └── tail.html │ ├── version.txt │ ├── web.py │ └── xmlrpc.py └── tox.ini