gitextract_7woj_tmr/ ├── .github/ │ └── workflows/ │ └── main.yml ├── .gitignore ├── .readthedocs.yaml ├── CHANGES.rst ├── COPYRIGHT.txt ├── LICENSE.txt ├── MANIFEST.in ├── README.rst ├── docs/ │ ├── Makefile │ ├── conf.py │ ├── crashmail.rst │ ├── crashmailbatch.rst │ ├── crashsms.rst │ ├── development.rst │ ├── fatalmailbatch.rst │ ├── httpok.rst │ ├── index.rst │ └── memmon.rst ├── setup.cfg ├── setup.py ├── superlance/ │ ├── __init__.py │ ├── compat.py │ ├── crashmail.py │ ├── crashmailbatch.py │ ├── crashsms.py │ ├── fatalmailbatch.py │ ├── httpok.py │ ├── memmon.py │ ├── process_state_email_monitor.py │ ├── process_state_monitor.py │ ├── tests/ │ │ ├── __init__.py │ │ ├── dummy.py │ │ ├── test_crashmail.py │ │ ├── test_crashmailbatch.py │ │ ├── test_crashsms.py │ │ ├── test_fatalmailbatch.py │ │ ├── test_httpok.py │ │ ├── test_memmon.py │ │ ├── test_process_state_email_monitor.py │ │ └── test_process_state_monitor.py │ └── timeoutconn.py └── tox.ini