[issue6887] executables in lib use /usr/bin/env python, not python3

2010-11-27 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +eric.araujo resolution: -> duplicate stage: -> committed/rejected status: open -> closed superseder: -> "make altinstall" installs many files with incorrect shebangs ___ Python tracker

[issue6887] executables in lib use /usr/bin/env python, not python3

2009-09-11 Thread Brett Cannon
Changes by Brett Cannon : -- priority: -> low type: -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue6887] executables in lib use /usr/bin/env python, not python3

2009-09-11 Thread Brett Cannon
Brett Cannon added the comment: Honestly those lines should probably be stripped out and simply expect people to use runpy to execute the modules. -- nosy: +brett.cannon ___ Python tracker

[issue6887] executables in lib use /usr/bin/env python, not python3

2009-09-11 Thread Mitchell Model
New submission from Mitchell Model : Some of the executables in lib begin with the line: #! /usr/bin/env python Shouldn't that be python3? -- components: Library (Lib) messages: 92518 nosy: MLModel severity: normal status: open title: executables in lib use /usr/bin/env python, not pyt