Python forums is a complete waste of time. I hope I can get some
useful insights here.
I'm looking for some help with extension modules built using Visual
Studio. I'm using the simple extension module example "hello" (taken
from the "Programming Python" book). I'm building it successfully in
both release and debug mode using a Visual Studio project.
I can successfully import the release build of the module into the
release build of Python. For example:
[E:\]python
Python 2.5 (r25:51908, Sep 19 2006, 09:52:17) [MSC v.1310 32 bit
(Intel)] on win
32
Type "help", "copyright", "credits" or "license" for more
information.
'Hello, Bob'>>import hello
hello.message("Bob")
>>quit()
I cannot, however, load the debug build of the exact same code (stored
in the exact same location) into the debug build of Python:
[E:\]python_d
Python 2.5.1 (r251:54863, Jun 5 2007, 10:17:28) [MSC v.1400 32
bit (Intel)] on
win32
Type "help", "copyright", "credits" or "license" for more
information.
Traceback (most recent call last):>>import hello
File "<stdin>", line 1, in <module>
ImportError: No module named hello
[26848 refs]
[7826 refs]>>quit()
Does anybody know what tricks or coding magic might be required to get
debug extension modules to load into debug Python?