This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: executables in lib use /usr/bin/env python, not python3
Type: behavior Stage: resolved
Components: Library (Lib) Versions: Python 3.0, Python 3.1, Python 3.2
process
Status: closed Resolution: duplicate
Dependencies: Superseder: "make altinstall" installs many files with incorrect shebangs
View: 10318
Assigned To: Nosy List: MLModel, brett.cannon, eric.araujo
Priority: low Keywords:

Created on 2009-09-11 19:04 by MLModel, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg92518 - (view) Author: Mitchell Model (MLModel) Date: 2009-09-11 19:04
Some of the executables in lib begin with the line:

#! /usr/bin/env python

Shouldn't that be python3?
msg92519 - (view) Author: Brett Cannon (brett.cannon) * (Python committer) Date: 2009-09-11 19:08
Honestly those lines should probably be stripped out and simply expect 
people to use runpy to execute the modules.
History
Date User Action Args
2022-04-11 14:56:52adminsetgithub: 51136
2010-11-28 05:40:30eric.araujosetstatus: open -> closed

nosy: + eric.araujo
resolution: duplicate
superseder: "make altinstall" installs many files with incorrect shebangs
stage: resolved
2009-09-11 19:08:52brett.cannonsetpriority: low
type: behavior
2009-09-11 19:08:35brett.cannonsetnosy: + brett.cannon
messages: + msg92519
2009-09-11 19:04:35MLModelcreate