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
149e255e
Kaydet (Commit)
149e255e
authored
May 04, 2012
tarafından
Antoine Pitrou
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge
üst
3ad58f26
9dad8826
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
37 deletions
+0
-37
import.c
Python/import.c
+0
-22
importdl.h
Python/importdl.h
+0
-15
No files found.
Python/import.c
Dosyayı görüntüle @
149e255e
...
...
@@ -2091,17 +2091,6 @@ static PyMethodDef imp_methods[] = {
{
NULL
,
NULL
}
/* sentinel */
};
static
int
setint
(
PyObject
*
d
,
char
*
name
,
int
value
)
{
PyObject
*
v
;
int
err
;
v
=
PyLong_FromLong
((
long
)
value
);
err
=
PyDict_SetItemString
(
d
,
name
,
v
);
Py_XDECREF
(
v
);
return
err
;
}
static
struct
PyModuleDef
impmodule
=
{
PyModuleDef_HEAD_INIT
,
...
...
@@ -2127,17 +2116,6 @@ PyInit_imp(void)
if
(
d
==
NULL
)
goto
failure
;
if
(
setint
(
d
,
"SEARCH_ERROR"
,
SEARCH_ERROR
)
<
0
)
goto
failure
;
if
(
setint
(
d
,
"PY_SOURCE"
,
PY_SOURCE
)
<
0
)
goto
failure
;
if
(
setint
(
d
,
"PY_COMPILED"
,
PY_COMPILED
)
<
0
)
goto
failure
;
if
(
setint
(
d
,
"C_EXTENSION"
,
C_EXTENSION
)
<
0
)
goto
failure
;
if
(
setint
(
d
,
"PY_RESOURCE"
,
PY_RESOURCE
)
<
0
)
goto
failure
;
if
(
setint
(
d
,
"PKG_DIRECTORY"
,
PKG_DIRECTORY
)
<
0
)
goto
failure
;
if
(
setint
(
d
,
"C_BUILTIN"
,
C_BUILTIN
)
<
0
)
goto
failure
;
if
(
setint
(
d
,
"PY_FROZEN"
,
PY_FROZEN
)
<
0
)
goto
failure
;
if
(
setint
(
d
,
"PY_CODERESOURCE"
,
PY_CODERESOURCE
)
<
0
)
goto
failure
;
if
(
setint
(
d
,
"IMP_HOOK"
,
IMP_HOOK
)
<
0
)
goto
failure
;
return
m
;
failure:
Py_XDECREF
(
m
);
...
...
Python/importdl.h
Dosyayı görüntüle @
149e255e
...
...
@@ -6,21 +6,6 @@ extern "C" {
#endif
/* Definitions for dynamic loading of extension modules */
enum
filetype
{
SEARCH_ERROR
,
PY_SOURCE
,
PY_COMPILED
,
C_EXTENSION
,
PY_RESOURCE
,
/* Mac only */
PKG_DIRECTORY
,
C_BUILTIN
,
PY_FROZEN
,
PY_CODERESOURCE
,
/* Mac only */
IMP_HOOK
};
extern
const
char
*
_PyImport_DynLoadFiletab
[];
extern
PyObject
*
_PyImport_LoadDynamicModule
(
PyObject
*
name
,
PyObject
*
pathname
,
...
...
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