On Fri, 18 Feb 2005 18:36:10 +0100, Peter Otten <[EMAIL PROTECTED]> wrote:

Rory Campbell-Lange wrote:

#!/usr/bin/python
import cgi
print "Content-type: text/html\n\n"
print "hi"

Gives me the following in my browser:

'''
hi
Content-type: text/html


hi '''

Why are there two 'hi's?

You have chosen a bad name for your script: cgi.py.
It is now self-importing. Rename it to something that doesn't clash with the
standard library, and all should be OK.


Peter


You are genius. -- http://mail.python.org/mailman/listinfo/python-list

Reply via email to