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
fe231b07
Kaydet (Commit)
fe231b07
authored
Ara 29, 2008
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#4764 set IOError.filename when trying to open a directory on POSIX platforms
üst
732479f5
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
2 deletions
+18
-2
test_file.py
Lib/test/test_file.py
+13
-0
NEWS
Misc/NEWS
+3
-0
fileobject.c
Objects/fileobject.c
+2
-2
No files found.
Lib/test/test_file.py
Dosyayı görüntüle @
fe231b07
...
...
@@ -125,6 +125,19 @@ class AutoFileTests(unittest.TestCase):
class
OtherFileTests
(
unittest
.
TestCase
):
def
testOpenDir
(
self
):
this_dir
=
os
.
path
.
dirname
(
__file__
)
for
mode
in
(
None
,
"w"
):
try
:
if
mode
:
f
=
open
(
this_dir
,
mode
)
else
:
f
=
open
(
this_dir
)
except
IOError
as
e
:
self
.
assertEqual
(
e
.
filename
,
this_dir
)
else
:
self
.
fail
(
"opening a directory didn't raise an IOError"
)
def
testModeStrings
(
self
):
# check invalid mode strings
for
mode
in
(
""
,
"aU"
,
"wU+"
):
...
...
Misc/NEWS
Dosyayı görüntüle @
fe231b07
...
...
@@ -12,6 +12,9 @@ What's New in Python 2.7 alpha 1
Core and Builtins
-----------------
- Issue #4764: IOError.filename is set when trying to open a directory on POSIX
systems.
- Issue #4759: None is now allowed as the first argument of
bytearray.translate(). It was always allowed for bytes.translate().
...
...
Objects/fileobject.c
Dosyayı görüntüle @
fe231b07
...
...
@@ -132,8 +132,8 @@ dircheck(PyFileObject* f)
if
(
fstat
(
fileno
(
f
->
f_fp
),
&
buf
)
==
0
&&
S_ISDIR
(
buf
.
st_mode
))
{
char
*
msg
=
strerror
(
EISDIR
);
PyObject
*
exc
=
PyObject_CallFunction
(
PyExc_IOError
,
"(is)"
,
EISDIR
,
msg
);
PyObject
*
exc
=
PyObject_CallFunction
(
PyExc_IOError
,
"(is
O
)"
,
EISDIR
,
msg
,
f
->
f_name
);
PyErr_SetObject
(
PyExc_IOError
,
exc
);
Py_XDECREF
(
exc
);
return
NULL
;
...
...
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