[求教]cgi调用时import出错

[求教]cgi调用时import出错

我现在要写一个python的CGI程序,感觉手头资料太少了,哪位可以推荐一下(除了python编程金典)。
现在有一个python脚本: test.py: 
import cgi, os, sys, string, time
from abc import *

.....
其中abc是我需要用到的模块,就在与test.py同级的目录里,
如果我单独运行test.py是没有问题的,
但是如果是在某个cgi程序里,当post的时候调用的这个test.py,如下句:
    <FORM method="post" action="../cgi-bin/test/test.py">
就会出现问题:500 server internal error.

我试试,如果去掉from abc import * 就没事了。
那到底是怎么回事呢。
哪位能帮一下忙,谢谢了。
但是我必须要用到abc那个模块呀....
如果import cgitb 也会出现500 server internal error.
请问是哪里的设置有问题吗?
在apache里配置你的目录的地方加入
PythonPath "sys.path+['/path/to/your/module']"

看看python-chinese邮件列表里这个thread,可能对你有帮助
http://python.cn/pipermail/pytho ... ecember/006586.html
多谢wolfg.我试试看。