This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author amaury.forgeotdarc
Recipients
Date 2006-01-11.16:22:09
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Logged In: YES 
user_id=389140

The pb seems to be in dynload_win.c, line 136:
while (*pch && pch[0] != '_' && pch[1] != 'd' && pch[2] !=
'.') {

This means that if a .pyd has "python_something.dll" in its
import table, it will be taken as THE python DLL.
I think the line should be:

while (*pch && (pch[0] != '_' || pch[1] != 'd' || pch[2] !=
'.')) {


History
Date User Action Args
2007-08-23 14:37:13adminlinkissue1403068 messages
2007-08-23 14:37:13admincreate