Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Always pass a full path name to LoadLibraryEx(). Fixes some Windows 9x ↵ | Mark Hammond | 2001-05-09 | 1 | -17/+14 |
| | | | | problems. As discussed on python-dev | ||||
* | Detect conflicting Python DLL on module import under Windows - as per [ ↵ | Mark Hammond | 2000-10-05 | 1 | -1/+152 |
| | | | | Patch #101676 ] | ||||
* | REMOVED all CWI, CNRI and BeOpen copyright markings. | Guido van Rossum | 2000-09-01 | 1 | -9/+0 |
| | | | | This should match the situation in the 1.6b1 tree. | ||||
* | Change copyright notice - 2nd try. | Guido van Rossum | 2000-06-30 | 1 | -6/+0 |
| | |||||
* | Change copyright notice. | Guido van Rossum | 2000-06-30 | 1 | -22/+7 |
| | |||||
* | Trent Mick's Win64 changes: size_t vs. int or long; also some overflow | Guido van Rossum | 2000-06-28 | 1 | -1/+1 |
| | | | | tests. | ||||
* | Cleanup patches from Greg Stein: | Guido van Rossum | 1999-12-22 | 1 | -1/+4 |
| | | | | | | | | | | | | | | | | | | | * in import.c, #ifdef out references to dynamic loading based on HAVE_DYNAMIC_LOADING * clean out the platform-specific crud from importdl.c. [ maybe fold this function into import.c and drop the importdl.c file? Greg.] * change GetDynLoadFunc's "funcname" parameter to "shortname". change "name" to "fqname" for clarification. * each GetDynLoadFunc now creates its own funcname value. WARNING: as I mentioned previously, we may run into an issue with a missing "_" on some platforms. Testing will show this pretty quickly, however. * move pathname munging into dynload_shlib.c | ||||
* | The old platform-specific contents of importdl.c, broken down into one | Guido van Rossum | 1999-12-20 | 1 | -0/+149 |
file per platform (really: per style of Dl API; e.g. all platforms using dlopen() are grouped together in dynload_shlib.c.). This is part of a set of patches by Greg Stein. |