├── .gitignore ├── LICENSE ├── Makefile ├── README.md └── utils └── brancher.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxvl/secure-coding-with-python/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxvl/secure-coding-with-python/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxvl/secure-coding-with-python/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxvl/secure-coding-with-python/HEAD/README.md -------------------------------------------------------------------------------- /utils/brancher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxvl/secure-coding-with-python/HEAD/utils/brancher.py --------------------------------------------------------------------------------