Staging
v0.5.1
https://github.com/python/cpython
Revision 4b9fa7373c82c3a8b9d9a7decfffc601419036cc authored by Michael W. Hudson on 25 March 2002, 12:24:24 UTC, committed by Michael W. Hudson on 25 March 2002, 12:24:24 UTC
    revision 4.8 of python-mode.el

(py-temp-directory): Add /var/tmp to the list of directories this
searches.  This is added after /tmp.  Closes SF bug #505488, except
that /var/tmp comes after /tmp instead of the patch's suggestion of
putting it before /usr/tmp.
1 parent 799699d
Raw File
Tip revision: 4b9fa7373c82c3a8b9d9a7decfffc601419036cc authored by Michael W. Hudson on 25 March 2002, 12:24:24 UTC
backport bwarsaw's checkin of
Tip revision: 4b9fa73
dynload_hpux.c

/* Support for dynamic loading of extension modules */

#include "dl.h"
#include <errno.h>

#include "Python.h"
#include "importdl.h"

#if defined(__hp9000s300)
#define FUNCNAME_PATTERN "_init%.200s"
#else
#define FUNCNAME_PATTERN "init%.200s"
#endif

const struct filedescr _PyImport_DynLoadFiletab[] = {
	{".sl", "rb", C_EXTENSION},
	{"module.sl", "rb", C_EXTENSION},
	{0, 0}
};

dl_funcptr _PyImport_GetDynLoadFunc(const char *fqname, const char *shortname,
				    const char *pathname, FILE *fp)
{
	dl_funcptr p;
	shl_t lib;
	int flags;
	char funcname[258];

	flags = BIND_FIRST | BIND_DEFERRED;
	if (Py_VerboseFlag) {
		flags = DYNAMIC_PATH | BIND_FIRST | BIND_IMMEDIATE |
			BIND_NONFATAL | BIND_VERBOSE;
		printf("shl_load %s\n",pathname);
	}
	lib = shl_load(pathname, flags, 0);
	/* XXX Chuck Blake once wrote that 0 should be BIND_NOSTART? */
	if (lib == NULL) {
		char buf[256];
		if (Py_VerboseFlag)
			perror(pathname);
		PyOS_snprintf(buf, sizeof(buf), "Failed to load %.200s",
			      pathname);
		PyErr_SetString(PyExc_ImportError, buf);
		return NULL;
	}
	PyOS_snprintf(funcname, sizeof(funcname), FUNCNAME_PATTERN, shortname);
	if (Py_VerboseFlag)
		printf("shl_findsym %s\n", funcname);
	if (shl_findsym(&lib, funcname, TYPE_UNDEFINED, (void *) &p) == -1) {
		shl_unload(lib);
		p = NULL;
	}
	if (p == NULL && Py_VerboseFlag)
		perror(funcname);

	return p;
}
back to top