classification
Title: executables in lib use /usr/bin/env python, not python3
Type: behavior Stage: committed/rejected
Components: Library (Lib) Versions: Python 3.0, Python 3.2, Python 3.1
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 2010-11-28 05:40 by eric.araujo. 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
2010-11-28 05:40:30eric.araujosetstatus: open -> closed

nosy: + eric.araujo
resolution: duplicate
superseder: "make altinstall" installs many files with incorrect shebangs
stage: committed/rejected
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