Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Implement PEP 3121: new module initialization and finalization API. | Martin v. Löwis | 2008-06-11 | 1 | -1/+1 |
| | |||||
* | Fix a warning from gcc by adding a missed const qualifier. | Hye-Shik Chang | 2006-01-04 | 1 | -1/+1 |
| | |||||
* | - SF Bug #1350188, "setdlopenflags" leads to crash upon "import" | Neal Norwitz | 2005-11-09 | 1 | -1/+4 |
| | | | | | It was possible dlerror() returns a NULL pointer, use a default error message in this case. | ||||
* | Print verbose messages to stderr. Fixes #1036752. | Martin v. Löwis | 2004-10-03 | 1 | -1/+2 |
| | |||||
* | A few more PyThreadState_Get to PyThreadState_GET conversions | Nicholas Bastin | 2004-03-25 | 1 | -1/+1 |
| | |||||
* | Patch #708495: Port more stuff to OpenVMS. | Martin v. Löwis | 2003-05-03 | 1 | -0/+28 |
| | |||||
* | OS/2 EMX port changes (Python part of patch #450267): | Andrew MacIntyre | 2002-02-26 | 1 | -0/+11 |
| | | | | | | | | | Python/ dynload_shlib.c // EMX port emulates dlopen() etc. for DL extensions import.c // changes to support 8.3 DLL name limit (VACPP+EMX) // and case sensitive import semantics importdl.h thread_os2.h | ||||
* | Use PyOS_snprintf instead of sprintf. | Jeremy Hylton | 2001-11-28 | 1 | -2/+3 |
| | |||||
* | Move dlfcn.h block out of NetBSD block, assuming that NetBSD before | Martin v. Löwis | 2001-10-18 | 1 | -3/+4 |
| | | | | | 199712 didn't have dlfcn.h, or that it wouldn't conflict with the other stuff defined. | ||||
* | Patch to bug #472202: Correctly recognize NetBSD before 199712. | Martin v. Löwis | 2001-10-18 | 1 | -2/+5 |
| | |||||
* | Patch #455231: Support ELF properly on OpenBSD. | Martin v. Löwis | 2001-09-05 | 1 | -1/+1 |
| | |||||
* | Patch #412229: Add functions sys.getdlopenflags and sys.setdlopenflags. | Martin v. Löwis | 2001-07-18 | 1 | -13/+7 |
| | | | | Add dlopenflags to PyInterpreterState, and use it in dlopen calls. | ||||
* | Oops, one more part of the cygwin patch (SF patch #102409 by jlt63: | Guido van Rossum | 2001-01-10 | 1 | -1/+1 |
| | | | | | | | | Cygwin Python DLL and Shared Extension Patch). Add module.dll as a valid extension. jlt63 writes: Note that his change essentially backs out the fix for bug #115973. Should ".pyd" be retained instead for posterity? | ||||
* | Patch 102114, Bug 11725. On OpenBSD (but apparently not on the other | Guido van Rossum | 2000-10-25 | 1 | -2/+7 |
| | | | | BSDs) you need a leading underscore in the dlsym() lookup name. | ||||
* | SF "bug" 115973: patches from Norman Vine so that shared libraries and | Tim Peters | 2000-10-05 | 1 | -0/+5 |
| | | | | Tkinter work under Cygwin. Accepted on faith & reasonableness. | ||||
* | 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 |
| | |||||
* | Cleanup patches from Greg Stein: | Guido van Rossum | 1999-12-22 | 1 | -1/+12 |
| | | | | | | | | | | | | | | | | | | | * 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/+110 |
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. |