At 2005-01-17T21:17:37+1300, Robert Himmelmann wrote: > I am learning Python and trying to improve my emacs-skills. When I > edit a .py-file in emacs and press C-c C-c (Excecute Buffer) I get the > message "Wrong type argument: seqencep, cpython". Anyone knows what > that means?
There are bugs for this problem in the bug databases for python-mode[0] itself, the Debian package and probably elsewhere. It's probably being caused by the fact that your Python program has a shebang at the beginning specifying a symlink (or some other form of indirection, e.g. using /usr/bin/env) to the Python interpreter. As a temporary solution, specify a direct path to a Python interpreter. The problem might be fixed in the latest release, but I haven't tested it personally. [0] http://sourceforge.net/tracker/index.php?func=detail&aid=1021885&group_id=86916&atid=581349 Cheers, -mjg -- Matthew Gregan |/ /| [EMAIL PROTECTED]
