mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
Recorded merge of revisions 81032 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ................ r81032 | antoine.pitrou | 2010-05-09 17:52:27 +0200 (dim., 09 mai 2010) | 9 lines Recorded merge of revisions 81029 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r81029 | antoine.pitrou | 2010-05-09 16:46:46 +0200 (dim., 09 mai 2010) | 3 lines Untabify C files. Will watch buildbots. ........ ................
This commit is contained in:
parent
b7d943625c
commit
7f14f0d8a0
251 changed files with 111553 additions and 111553 deletions
|
@ -9,39 +9,39 @@
|
|||
|
||||
|
||||
const struct filedescr _PyImport_DynLoadFiletab[] = {
|
||||
{".so", "rb", C_EXTENSION},
|
||||
{"module.so", "rb", C_EXTENSION},
|
||||
{0, 0}
|
||||
{".so", "rb", C_EXTENSION},
|
||||
{"module.so", "rb", C_EXTENSION},
|
||||
{0, 0}
|
||||
};
|
||||
|
||||
dl_funcptr _PyImport_GetDynLoadFunc(const char *fqname, const char *shortname,
|
||||
const char *pathname, FILE *fp)
|
||||
const char *pathname, FILE *fp)
|
||||
{
|
||||
void *p;
|
||||
int lib;
|
||||
char funcname[258];
|
||||
void *p;
|
||||
int lib;
|
||||
char funcname[258];
|
||||
|
||||
if (Py_VerboseFlag)
|
||||
printf("load_library %s\n", pathname);
|
||||
if (Py_VerboseFlag)
|
||||
printf("load_library %s\n", pathname);
|
||||
|
||||
lib = load_library(pathname, 0);
|
||||
if (lib < 0) {
|
||||
char buf[512];
|
||||
if (Py_VerboseFlag)
|
||||
perror(pathname);
|
||||
PyOS_snprintf(buf, sizeof(buf), "Failed to load %.200s: %.200s",
|
||||
pathname, strerror(errno));
|
||||
PyErr_SetString(PyExc_ImportError, buf);
|
||||
return NULL;
|
||||
}
|
||||
PyOS_snprintf(funcname, sizeof(funcname), "PyInit_%.200s", shortname);
|
||||
if (Py_VerboseFlag)
|
||||
printf("get_symbol_address %s\n", funcname);
|
||||
if (get_symbol_address(lib, funcname, -1, &p) < 0) {
|
||||
p = NULL;
|
||||
if (Py_VerboseFlag)
|
||||
perror(funcname);
|
||||
}
|
||||
lib = load_library(pathname, 0);
|
||||
if (lib < 0) {
|
||||
char buf[512];
|
||||
if (Py_VerboseFlag)
|
||||
perror(pathname);
|
||||
PyOS_snprintf(buf, sizeof(buf), "Failed to load %.200s: %.200s",
|
||||
pathname, strerror(errno));
|
||||
PyErr_SetString(PyExc_ImportError, buf);
|
||||
return NULL;
|
||||
}
|
||||
PyOS_snprintf(funcname, sizeof(funcname), "PyInit_%.200s", shortname);
|
||||
if (Py_VerboseFlag)
|
||||
printf("get_symbol_address %s\n", funcname);
|
||||
if (get_symbol_address(lib, funcname, -1, &p) < 0) {
|
||||
p = NULL;
|
||||
if (Py_VerboseFlag)
|
||||
perror(funcname);
|
||||
}
|
||||
|
||||
return (dl_funcptr) p;
|
||||
return (dl_funcptr) p;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue