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
5e6312c3
Kaydet (Commit)
5e6312c3
authored
May 14, 2018
tarafından
ukwksk
Kaydeden (comit)
Brett Cannon
May 14, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-33443 Fix typo in Python/import.c (GH-6722)
üst
f2290fb1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
import.c
Python/import.c
+5
-5
No files found.
Python/import.c
Dosyayı görüntüle @
5e6312c3
...
...
@@ -92,7 +92,7 @@ _PyImportHooks_Init(void)
_PyInitError
_PyImportZip_Init
(
void
)
{
PyObject
*
path_hooks
,
*
zi
m
pimport
;
PyObject
*
path_hooks
,
*
zipimport
;
int
err
=
0
;
path_hooks
=
PySys_GetObject
(
"path_hooks"
);
...
...
@@ -104,17 +104,17 @@ _PyImportZip_Init(void)
if
(
Py_VerboseFlag
)
PySys_WriteStderr
(
"# installing zipimport hook
\n
"
);
zi
m
pimport
=
PyImport_ImportModule
(
"zipimport"
);
if
(
zi
m
pimport
==
NULL
)
{
zipimport
=
PyImport_ImportModule
(
"zipimport"
);
if
(
zipimport
==
NULL
)
{
PyErr_Clear
();
/* No zip import module -- okay */
if
(
Py_VerboseFlag
)
PySys_WriteStderr
(
"# can't import zipimport
\n
"
);
}
else
{
_Py_IDENTIFIER
(
zipimporter
);
PyObject
*
zipimporter
=
_PyObject_GetAttrId
(
zi
m
pimport
,
PyObject
*
zipimporter
=
_PyObject_GetAttrId
(
zipimport
,
&
PyId_zipimporter
);
Py_DECREF
(
zi
m
pimport
);
Py_DECREF
(
zipimport
);
if
(
zipimporter
==
NULL
)
{
PyErr_Clear
();
/* No zipimporter object -- okay */
if
(
Py_VerboseFlag
)
...
...
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