gitextract_n9en36u7/ ├── .dockerignore ├── .github/ │ └── workflows/ │ └── ci.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── VERSION ├── VERSION.h ├── ci/ │ ├── artifact-upload │ ├── docker-deb-test │ ├── docker-python-test │ ├── gcov-build │ └── gcov-report ├── circle.yml ├── debian/ │ ├── .gitignore │ ├── changelog │ ├── clean │ ├── compat │ ├── control │ ├── copyright │ ├── docs │ ├── help2man │ ├── install │ ├── lintian-overrides │ ├── manpages │ ├── rules │ └── source/ │ └── format ├── dumb-init.c ├── pytest.ini ├── requirements-dev.txt ├── setup.py ├── testing/ │ ├── __init__.py │ └── print_signals.py ├── tests/ │ ├── __init__.py │ ├── child_processes_test.py │ ├── cli_test.py │ ├── conftest.py │ ├── cwd_test.py │ ├── exit_status_test.py │ ├── proxies_signals_test.py │ ├── shell_background_test.py │ ├── test-zombies │ └── tty_test.py └── tox.ini