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
35734762
Kaydet (Commit)
35734762
authored
Ara 18, 2011
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
(Merge 3.2) Handle correctly _Py_fopen() error: don't replace the exception
üst
bd0850b8
bd206e27
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
12 deletions
+26
-12
zipimport.c
Modules/zipimport.c
+5
-3
import.c
Python/import.c
+21
-9
No files found.
Modules/zipimport.c
Dosyayı görüntüle @
35734762
...
...
@@ -742,7 +742,8 @@ read_directory(PyObject *archive)
fp
=
_Py_fopen
(
archive
,
"rb"
);
if
(
fp
==
NULL
)
{
PyErr_Format
(
ZipImportError
,
"can't open Zip file: %R"
,
archive
);
if
(
!
PyErr_Occurred
())
PyErr_Format
(
ZipImportError
,
"can't open Zip file: %R"
,
archive
);
return
NULL
;
}
fseek
(
fp
,
-
22
,
SEEK_END
);
...
...
@@ -913,8 +914,9 @@ get_data(PyObject *archive, PyObject *toc_entry)
fp
=
_Py_fopen
(
archive
,
"rb"
);
if
(
!
fp
)
{
PyErr_Format
(
PyExc_IOError
,
"zipimport: can not open file %U"
,
archive
);
if
(
!
PyErr_Occurred
())
PyErr_Format
(
PyExc_IOError
,
"zipimport: can not open file %U"
,
archive
);
return
NULL
;
}
...
...
Python/import.c
Dosyayı görüntüle @
35734762
...
...
@@ -3760,26 +3760,38 @@ get_file(PyObject *pathname, PyObject *fob, char *mode)
mode
=
"r"
PY_STDIOTEXTMODE
;
if
(
fob
==
NULL
)
{
fp
=
_Py_fopen
(
pathname
,
mode
);
if
(
!
fp
)
{
if
(
!
PyErr_Occurred
())
PyErr_SetFromErrno
(
PyExc_IOError
);
return
NULL
;
}
return
fp
;
}
else
{
int
fd
=
PyObject_AsFileDescriptor
(
fob
);
if
(
fd
==
-
1
)
return
NULL
;
if
(
!
_PyVerify_fd
(
fd
))
goto
error
;
if
(
!
_PyVerify_fd
(
fd
))
{
PyErr_SetFromErrno
(
PyExc_IOError
);
return
NULL
;
}
/* the FILE struct gets a new fd, so that it can be closed
* independently of the file descriptor given
*/
fd
=
dup
(
fd
);
if
(
fd
==
-
1
)
goto
error
;
if
(
fd
==
-
1
)
{
PyErr_SetFromErrno
(
PyExc_IOError
);
return
NULL
;
}
fp
=
fdopen
(
fd
,
mode
);
}
if
(
fp
)
if
(
!
fp
)
{
PyErr_SetFromErrno
(
PyExc_IOError
);
return
NULL
;
}
return
fp
;
error:
PyErr_SetFromErrno
(
PyExc_IOError
);
return
NULL
;
}
}
static
PyObject
*
...
...
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