Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
42040fb6
Kaydet (Commit)
42040fb6
authored
Şub 22, 2011
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #3080: Remove unused argument of _PyImport_GetDynLoadFunc()
The first argument, fqname, was not used.
üst
9b99b448
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
10 additions
and
11 deletions
+10
-11
dynload_aix.c
Python/dynload_aix.c
+1
-1
dynload_dl.c
Python/dynload_dl.c
+1
-1
dynload_hpux.c
Python/dynload_hpux.c
+1
-1
dynload_next.c
Python/dynload_next.c
+2
-2
dynload_os2.c
Python/dynload_os2.c
+1
-1
dynload_shlib.c
Python/dynload_shlib.c
+1
-1
dynload_win.c
Python/dynload_win.c
+1
-1
importdl.c
Python/importdl.c
+2
-3
No files found.
Python/dynload_aix.c
Dosyayı görüntüle @
42040fb6
...
...
@@ -154,7 +154,7 @@ aix_loaderror(const char *pathname)
}
dl_funcptr
_PyImport_GetDynLoadFunc
(
const
char
*
fqname
,
const
char
*
shortname
,
dl_funcptr
_PyImport_GetDynLoadFunc
(
const
char
*
shortname
,
const
char
*
pathname
,
FILE
*
fp
)
{
dl_funcptr
p
;
...
...
Python/dynload_dl.c
Dosyayı görüntüle @
42040fb6
...
...
@@ -16,7 +16,7 @@ const struct filedescr _PyImport_DynLoadFiletab[] = {
};
dl_funcptr
_PyImport_GetDynLoadFunc
(
const
char
*
fqname
,
const
char
*
shortname
,
dl_funcptr
_PyImport_GetDynLoadFunc
(
const
char
*
shortname
,
const
char
*
pathname
,
FILE
*
fp
)
{
char
funcname
[
258
];
...
...
Python/dynload_hpux.c
Dosyayı görüntüle @
42040fb6
...
...
@@ -19,7 +19,7 @@ const struct filedescr _PyImport_DynLoadFiletab[] = {
{
0
,
0
}
};
dl_funcptr
_PyImport_GetDynLoadFunc
(
const
char
*
fqname
,
const
char
*
shortname
,
dl_funcptr
_PyImport_GetDynLoadFunc
(
const
char
*
shortname
,
const
char
*
pathname
,
FILE
*
fp
)
{
dl_funcptr
p
;
...
...
Python/dynload_next.c
Dosyayı görüntüle @
42040fb6
...
...
@@ -31,8 +31,8 @@ const struct filedescr _PyImport_DynLoadFiletab[] = {
#define LINKOPTIONS NSLINKMODULE_OPTION_BINDNOW| \
NSLINKMODULE_OPTION_RETURN_ON_ERROR|NSLINKMODULE_OPTION_PRIVATE
#endif
dl_funcptr
_PyImport_GetDynLoadFunc
(
const
char
*
fqname
,
const
char
*
shortname
,
const
char
*
pathname
,
FILE
*
fp
)
dl_funcptr
_PyImport_GetDynLoadFunc
(
const
char
*
shortname
,
const
char
*
pathname
,
FILE
*
fp
)
{
dl_funcptr
p
=
NULL
;
char
funcname
[
258
];
...
...
Python/dynload_os2.c
Dosyayı görüntüle @
42040fb6
...
...
@@ -15,7 +15,7 @@ const struct filedescr _PyImport_DynLoadFiletab[] = {
{
0
,
0
}
};
dl_funcptr
_PyImport_GetDynLoadFunc
(
const
char
*
fqname
,
const
char
*
shortname
,
dl_funcptr
_PyImport_GetDynLoadFunc
(
const
char
*
shortname
,
const
char
*
pathname
,
FILE
*
fp
)
{
dl_funcptr
p
;
...
...
Python/dynload_shlib.c
Dosyayı görüntüle @
42040fb6
...
...
@@ -75,7 +75,7 @@ static struct {
static
int
nhandles
=
0
;
dl_funcptr
_PyImport_GetDynLoadFunc
(
const
char
*
fqname
,
const
char
*
shortname
,
dl_funcptr
_PyImport_GetDynLoadFunc
(
const
char
*
shortname
,
const
char
*
pathname
,
FILE
*
fp
)
{
dl_funcptr
p
;
...
...
Python/dynload_win.c
Dosyayı görüntüle @
42040fb6
...
...
@@ -171,7 +171,7 @@ static char *GetPythonImport (HINSTANCE hModule)
return
NULL
;
}
dl_funcptr
_PyImport_GetDynLoadFunc
(
const
char
*
fqname
,
const
char
*
shortname
,
dl_funcptr
_PyImport_GetDynLoadFunc
(
const
char
*
shortname
,
const
char
*
pathname
,
FILE
*
fp
)
{
dl_funcptr
p
;
...
...
Python/importdl.c
Dosyayı görüntüle @
42040fb6
...
...
@@ -12,8 +12,7 @@
#include "importdl.h"
extern
dl_funcptr
_PyImport_GetDynLoadFunc
(
const
char
*
name
,
const
char
*
shortname
,
extern
dl_funcptr
_PyImport_GetDynLoadFunc
(
const
char
*
shortname
,
const
char
*
pathname
,
FILE
*
fp
);
...
...
@@ -48,7 +47,7 @@ _PyImport_LoadDynamicModule(char *name, char *pathname, FILE *fp)
shortname
=
lastdot
+
1
;
}
p0
=
_PyImport_GetDynLoadFunc
(
name
,
shortname
,
pathname
,
fp
);
p0
=
_PyImport_GetDynLoadFunc
(
shortname
,
pathname
,
fp
);
p
=
(
PyObject
*
(
*
)(
void
))
p0
;
if
(
PyErr_Occurred
())
goto
error
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment