mirror of
https://github.com/python/cpython.git
synced 2025-09-18 22:50:26 +00:00
dynload_dl.c: replace tabs by spaces
This commit is contained in:
parent
499e19340e
commit
3eeee83391
1 changed files with 7 additions and 7 deletions
|
@ -10,17 +10,17 @@
|
||||||
extern char *Py_GetProgramName(void);
|
extern char *Py_GetProgramName(void);
|
||||||
|
|
||||||
const struct filedescr _PyImport_DynLoadFiletab[] = {
|
const struct filedescr _PyImport_DynLoadFiletab[] = {
|
||||||
{".o", "rb", C_EXTENSION},
|
{".o", "rb", C_EXTENSION},
|
||||||
{"module.o", "rb", C_EXTENSION},
|
{"module.o", "rb", C_EXTENSION},
|
||||||
{0, 0}
|
{0, 0}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
dl_funcptr _PyImport_GetDynLoadFunc(const char *shortname,
|
dl_funcptr _PyImport_GetDynLoadFunc(const char *shortname,
|
||||||
const char *pathname, FILE *fp)
|
const char *pathname, FILE *fp)
|
||||||
{
|
{
|
||||||
char funcname[258];
|
char funcname[258];
|
||||||
|
|
||||||
PyOS_snprintf(funcname, sizeof(funcname), "PyInit_%.200s", shortname);
|
PyOS_snprintf(funcname, sizeof(funcname), "PyInit_%.200s", shortname);
|
||||||
return dl_loadmod(Py_GetProgramName(), pathname, funcname);
|
return dl_loadmod(Py_GetProgramName(), pathname, funcname);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue