├── .flake8 ├── LICENSE.md ├── README.md ├── VERSION ├── distribution ├── distribution.py ├── distributionrc ├── screenshot.png └── tests ├── runTests.sh ├── stderr.01.expected.txt ├── stderr.02.expected.txt ├── stderr.03.expected.txt ├── stderr.04.expected.txt ├── stderr.05.expected.txt ├── stderr.06.expected.txt ├── stderr.07.expected.txt ├── stdin.01.txt ├── stdin.02.txt ├── stdin.03.txt ├── stdin.04.txt ├── stdout.01.expected.txt ├── stdout.02.expected.txt ├── stdout.03.expected.txt ├── stdout.04.expected.txt ├── stdout.05.expected.txt ├── stdout.06.expected.txt └── stdout.07.expected.txt /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | ignore = E501, W503 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wizzat/distribution/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wizzat/distribution/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.2.2 2 | -------------------------------------------------------------------------------- /distribution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wizzat/distribution/HEAD/distribution -------------------------------------------------------------------------------- /distribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wizzat/distribution/HEAD/distribution.py -------------------------------------------------------------------------------- /distributionrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wizzat/distribution/HEAD/distributionrc -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wizzat/distribution/HEAD/screenshot.png -------------------------------------------------------------------------------- /tests/runTests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wizzat/distribution/HEAD/tests/runTests.sh -------------------------------------------------------------------------------- /tests/stderr.01.expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wizzat/distribution/HEAD/tests/stderr.01.expected.txt -------------------------------------------------------------------------------- /tests/stderr.02.expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wizzat/distribution/HEAD/tests/stderr.02.expected.txt -------------------------------------------------------------------------------- /tests/stderr.03.expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wizzat/distribution/HEAD/tests/stderr.03.expected.txt -------------------------------------------------------------------------------- /tests/stderr.04.expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wizzat/distribution/HEAD/tests/stderr.04.expected.txt -------------------------------------------------------------------------------- /tests/stderr.05.expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wizzat/distribution/HEAD/tests/stderr.05.expected.txt -------------------------------------------------------------------------------- /tests/stderr.06.expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wizzat/distribution/HEAD/tests/stderr.06.expected.txt -------------------------------------------------------------------------------- /tests/stderr.07.expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wizzat/distribution/HEAD/tests/stderr.07.expected.txt -------------------------------------------------------------------------------- /tests/stdin.01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wizzat/distribution/HEAD/tests/stdin.01.txt -------------------------------------------------------------------------------- /tests/stdin.02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wizzat/distribution/HEAD/tests/stdin.02.txt -------------------------------------------------------------------------------- /tests/stdin.03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wizzat/distribution/HEAD/tests/stdin.03.txt -------------------------------------------------------------------------------- /tests/stdin.04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wizzat/distribution/HEAD/tests/stdin.04.txt -------------------------------------------------------------------------------- /tests/stdout.01.expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wizzat/distribution/HEAD/tests/stdout.01.expected.txt -------------------------------------------------------------------------------- /tests/stdout.02.expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wizzat/distribution/HEAD/tests/stdout.02.expected.txt -------------------------------------------------------------------------------- /tests/stdout.03.expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wizzat/distribution/HEAD/tests/stdout.03.expected.txt -------------------------------------------------------------------------------- /tests/stdout.04.expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wizzat/distribution/HEAD/tests/stdout.04.expected.txt -------------------------------------------------------------------------------- /tests/stdout.05.expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wizzat/distribution/HEAD/tests/stdout.05.expected.txt -------------------------------------------------------------------------------- /tests/stdout.06.expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wizzat/distribution/HEAD/tests/stdout.06.expected.txt -------------------------------------------------------------------------------- /tests/stdout.07.expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wizzat/distribution/HEAD/tests/stdout.07.expected.txt --------------------------------------------------------------------------------