Re: [Python-Dev] Re: Supporting Third Party Modules (was The other Py2.4issue)

2004-12-12 Thread "Martin v. Löwis"
Fredrik Lundh wrote: the Python interpreter could initialize this DLL, using some suitable mechanism. What suitable mechanism could that be? Suppose the Python script imports foo.pyd, which in turn is linked with pythonany.dll, which in turn is supposed to find the right Python DLL. Now, python24.d

[Python-Dev] Re: Supporting Third Party Modules (was The other Py2.4issue)

2004-12-11 Thread Fredrik Lundh
Martin v. Löwis wrote: >> Third party modules would link against this DLL independent of which >> python is being used. > > I believe this is not implementable: How can the DLL know which Python > DLL to use? the Python interpreter could initialize this DLL, using some suitable mechanism. altern