Try to narrow it down:
from extension import Template
from extension import Syntax
from extension import processcmd
Which one fails? What is this "extension" package?
--
http://mail.python.org/mailman/listinfo/python-list
We have a user on Windows with Python 2.6 who gets this error message when
executing an import statement.
from extension import Template, Syntax, processcmd
SystemError: ..\Objects\listobject.c:169: bad argument to internal function
The module can be imported directly via
import extension
wi