есть код

from mod_python import apache

def index(req):
req.content_type = ‘text/html’
req.write('<html><head><title>mod_python test page</title></head><body>\n')
req.write('index\n')
req.write('</body></html>')
return apache.OK

при выводе в браузере в конце добавляется “0”

вот так - index 0

Подскажите, плиз, в чем проблема.