117724f21a94ff32f773af4c37be88fe0d2970e3~suv--- Lib/cgi.py.orig 2006-08-10 19:41:07.000000000 +0200
117724f21a94ff32f773af4c37be88fe0d2970e3~suv+++ Lib/cgi.py 2007-08-21 15:36:54.000000000 +0200
117724f21a94ff32f773af4c37be88fe0d2970e3~suv@@ -1,13 +1,6 @@
117724f21a94ff32f773af4c37be88fe0d2970e3~suv-#! /usr/local/bin/python
117724f21a94ff32f773af4c37be88fe0d2970e3~suv+#! __PREFIX__/bin/python2.5
117724f21a94ff32f773af4c37be88fe0d2970e3~suv
117724f21a94ff32f773af4c37be88fe0d2970e3~suv-# NOTE: the above "/usr/local/bin/python" is NOT a mistake. It is
117724f21a94ff32f773af4c37be88fe0d2970e3~suv-# intentionally NOT "/usr/bin/env python". On many systems
117724f21a94ff32f773af4c37be88fe0d2970e3~suv-# (e.g. Solaris), /usr/local/bin is not in $PATH as passed to CGI
117724f21a94ff32f773af4c37be88fe0d2970e3~suv-# scripts, and /usr/local/bin is the default directory where Python is
117724f21a94ff32f773af4c37be88fe0d2970e3~suv-# installed, so /usr/bin/env would be unable to find python. Granted,
117724f21a94ff32f773af4c37be88fe0d2970e3~suv-# binary installations by Linux vendors often install Python in
117724f21a94ff32f773af4c37be88fe0d2970e3~suv-# /usr/bin. So let those vendors patch cgi.py to match their choice
117724f21a94ff32f773af4c37be88fe0d2970e3~suv-# of installation.
117724f21a94ff32f773af4c37be88fe0d2970e3~suv+# NOTE: The original #!/usr/local/bin/python patched for MacPorts installation
117724f21a94ff32f773af4c37be88fe0d2970e3~suv
117724f21a94ff32f773af4c37be88fe0d2970e3~suv """Support module for CGI (Common Gateway Interface) scripts.
117724f21a94ff32f773af4c37be88fe0d2970e3~suv