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
5848d1ff
Kaydet (Commit)
5848d1ff
authored
Ock 19, 2009
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
raise an OSError for invalid fds #4991
üst
b6e112bd
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
27 additions
and
0 deletions
+27
-0
test_fileio.py
Lib/test/test_fileio.py
+4
-0
NEWS
Misc/NEWS
+3
-0
_fileio.c
Modules/_fileio.c
+20
-0
No files found.
Lib/test/test_fileio.py
Dosyayı görüntüle @
5848d1ff
...
...
@@ -176,6 +176,10 @@ class OtherFileTests(unittest.TestCase):
f
.
close
()
os
.
unlink
(
TESTFN
)
def
testInvalidFd
(
self
):
self
.
assertRaises
(
ValueError
,
_fileio
.
_FileIO
,
-
10
)
self
.
assertRaises
(
OSError
,
_fileio
.
_FileIO
,
10
)
def
testBadModeArgument
(
self
):
# verify that we get a sensible error message for bad mode argument
bad_mode
=
"qwerty"
...
...
Misc/NEWS
Dosyayı görüntüle @
5848d1ff
...
...
@@ -12,6 +12,9 @@ What's New in Python 2.7 alpha 1
Core and Builtins
-----------------
- Issue #4991: Passing invalid file descriptors to io.FileIO now raises an
OSError.
- Issue #4807: Port the _winreg module to Windows CE.
- Issue #4935: The overflow checking code in the expandtabs() method common
...
...
Modules/_fileio.c
Dosyayı görüntüle @
5848d1ff
...
...
@@ -119,6 +119,24 @@ dircheck(PyFileIOObject* self, char *name)
return
0
;
}
static
int
check_fd
(
int
fd
)
{
#if defined(HAVE_FSTAT)
struct
stat
buf
;
if
(
fstat
(
fd
,
&
buf
)
<
0
&&
errno
==
EBADF
)
{
PyObject
*
exc
;
char
*
msg
=
strerror
(
EBADF
);
exc
=
PyObject_CallFunction
(
PyExc_OSError
,
"(is)"
,
EBADF
,
msg
);
PyErr_SetObject
(
PyExc_OSError
,
exc
);
Py_XDECREF
(
exc
);
return
-
1
;
}
#endif
return
0
;
}
static
int
fileio_init
(
PyObject
*
oself
,
PyObject
*
args
,
PyObject
*
kwds
)
...
...
@@ -151,6 +169,8 @@ fileio_init(PyObject *oself, PyObject *args, PyObject *kwds)
"Negative filedescriptor"
);
return
-
1
;
}
if
(
check_fd
(
fd
))
return
-
1
;
}
else
{
PyErr_Clear
();
...
...
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