Undo Ping's change.

CGI scripts should *not* use /usr/bin/env, since on systems that don't
come standard with Python installed, Python isn't on the default $PATH.

Too bad that this breaks on Linux, where Python is in /usr/bin which
is on the default path -- the point is that you must manually edit
your CGI scripts when you install them.
This commit is contained in:
Guido van Rossum 2000-10-03 13:51:09 +00:00
parent 099e534fa4
commit 5191463276

View file

@ -1,4 +1,4 @@
#!/usr/bin/env python
#! /usr/local/bin/python
"""Support module for CGI (Common Gateway Interface) scripts.