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
3b635cd4
Kaydet (Commit)
3b635cd4
authored
Eki 01, 2012
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Close #15766: Catch exceptions while raising the ImportError in imp.load_dynamic()
üst
f25dabe1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
7 deletions
+18
-7
dynload_shlib.c
Python/dynload_shlib.c
+18
-7
No files found.
Python/dynload_shlib.c
Dosyayı görüntüle @
3b635cd4
...
...
@@ -129,19 +129,30 @@ dl_funcptr _PyImport_GetDynLoadFunc(const char *shortname,
handle
=
dlopen
(
pathname
,
dlopenflags
);
if
(
handle
==
NULL
)
{
PyObject
*
mod_name
=
NULL
;
PyObject
*
path
=
NULL
;
PyObject
*
error_ob
=
NULL
;
PyObject
*
mod_name
;
PyObject
*
path
;
PyObject
*
error_ob
;
const
char
*
error
=
dlerror
();
if
(
error
==
NULL
)
error
=
"unknown dlopen() error"
;
error_ob
=
PyUnicode_FromString
(
error
);
path
=
PyUnicode_FromString
(
pathname
);
if
(
error_ob
==
NULL
)
return
NULL
;
mod_name
=
PyUnicode_FromString
(
shortname
);
if
(
mod_name
==
NULL
)
{
Py_DECREF
(
error_ob
);
return
NULL
;
}
path
=
PyUnicode_FromString
(
pathname
);
if
(
path
==
NULL
)
{
Py_DECREF
(
error_ob
);
Py_DECREF
(
mod_name
);
return
NULL
;
}
PyErr_SetImportError
(
error_ob
,
mod_name
,
path
);
Py_
X
DECREF
(
error_ob
);
Py_
XDECREF
(
path
);
Py_
XDECREF
(
mod_name
);
Py_DECREF
(
error_ob
);
Py_
DECREF
(
mod_name
);
Py_
DECREF
(
path
);
return
NULL
;
}
if
(
fp
!=
NULL
&&
nhandles
<
128
)
...
...
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