diff --git a/source/docs/boilerplate/index.rst b/source/docs/boilerplate/index.rst index 3bc578a..9109ec1 100644 --- a/source/docs/boilerplate/index.rst +++ b/source/docs/boilerplate/index.rst @@ -2,15 +2,14 @@ Boilerplate =========== -`if __name__ == '__main__': main()`_ - Prevents main() from being executed during imports. `#!/usr/bin/env/python`_ - UNIX specific. + Searches the executable PATH for a Python executable. `#!/usr/local/bin/python`_ - UNIX specific. + For Python executables not managed by a distribution package manager. `#!/usr/bin/python`_ - UNIX specific. + The default Python will be located and used. `# -*- coding: utf-8 -*-`_ - Declares usage of UTF-8 characters in the script. + Declares usage of UTF-8 characters in the script. +`if __name__ == '__main__': main()`_ + Prevents main() from being executed during imports. - \ No newline at end of file