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
57ddf78b
Kaydet (Commit)
57ddf78b
authored
Ock 08, 2014
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #20113: os.readv() and os.writev() now raise an OSError exception on
error instead of returning -1.
üst
2bcbc141
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
36 additions
and
10 deletions
+36
-10
test_os.py
Lib/test/test_os.py
+9
-0
test_posix.py
Lib/test/test_posix.py
+9
-1
NEWS
Misc/NEWS
+3
-0
posixmodule.c
Modules/posixmodule.c
+15
-9
No files found.
Lib/test/test_os.py
Dosyayı görüntüle @
57ddf78b
...
...
@@ -1227,6 +1227,11 @@ class TestInvalidFD(unittest.TestCase):
def
test_read
(
self
):
self
.
check
(
os
.
read
,
1
)
@unittest.skipUnless
(
hasattr
(
os
,
'readv'
),
'test needs os.readv()'
)
def
test_readv
(
self
):
buf
=
bytearray
(
10
)
self
.
check
(
os
.
readv
,
[
buf
])
@unittest.skipUnless
(
hasattr
(
os
,
'tcsetpgrp'
),
'test needs os.tcsetpgrp()'
)
def
test_tcsetpgrpt
(
self
):
self
.
check
(
os
.
tcsetpgrp
,
0
)
...
...
@@ -1235,6 +1240,10 @@ class TestInvalidFD(unittest.TestCase):
def
test_write
(
self
):
self
.
check
(
os
.
write
,
b
" "
)
@unittest.skipUnless
(
hasattr
(
os
,
'writev'
),
'test needs os.writev()'
)
def
test_writev
(
self
):
self
.
check
(
os
.
writev
,
[
b
'abc'
])
class
LinkTests
(
unittest
.
TestCase
):
def
setUp
(
self
):
...
...
Lib/test/test_posix.py
Dosyayı görüntüle @
57ddf78b
...
...
@@ -283,9 +283,14 @@ class PosixTester(unittest.TestCase):
def
test_writev
(
self
):
fd
=
os
.
open
(
support
.
TESTFN
,
os
.
O_RDWR
|
os
.
O_CREAT
)
try
:
os
.
writev
(
fd
,
(
b
'test1'
,
b
'tt2'
,
b
't3'
))
n
=
os
.
writev
(
fd
,
(
b
'test1'
,
b
'tt2'
,
b
't3'
))
self
.
assertEqual
(
n
,
10
)
os
.
lseek
(
fd
,
0
,
os
.
SEEK_SET
)
self
.
assertEqual
(
b
'test1tt2t3'
,
posix
.
read
(
fd
,
10
))
# Issue #20113: empty list of buffers should not crash
self
.
assertEqual
(
posix
.
writev
(
fd
,
[]),
0
)
finally
:
os
.
close
(
fd
)
...
...
@@ -298,6 +303,9 @@ class PosixTester(unittest.TestCase):
buf
=
[
bytearray
(
i
)
for
i
in
[
5
,
3
,
2
]]
self
.
assertEqual
(
posix
.
readv
(
fd
,
buf
),
10
)
self
.
assertEqual
([
b
'test1'
,
b
'tt2'
,
b
't3'
],
[
bytes
(
i
)
for
i
in
buf
])
# Issue #20113: empty list of buffers should not crash
self
.
assertEqual
(
posix
.
readv
(
fd
,
[]),
0
)
finally
:
os
.
close
(
fd
)
...
...
Misc/NEWS
Dosyayı görüntüle @
57ddf78b
...
...
@@ -36,6 +36,9 @@ Core and Builtins
Library
-------
-
Issue
#
20113
:
os
.
readv
()
and
os
.
writev
()
now
raise
an
OSError
exception
on
error
instead
of
returning
-
1.
-
Issue
#
20072
:
Fixed
multiple
errors
in
tkinter
with
wantobjects
is
False
.
-
Issue
#
20108
:
Avoid
parameter
name
clash
in
inspect
.
getcallargs
().
...
...
Modules/posixmodule.c
Dosyayı görüntüle @
57ddf78b
...
...
@@ -8050,14 +8050,14 @@ iov_setup(struct iovec **iov, Py_buffer **buf, PyObject *seq, int cnt, int type)
*
iov
=
PyMem_New
(
struct
iovec
,
cnt
);
if
(
*
iov
==
NULL
)
{
PyErr_NoMemory
();
return
total
;
return
-
1
;
}
*
buf
=
PyMem_New
(
Py_buffer
,
cnt
);
if
(
*
buf
==
NULL
)
{
PyMem_Del
(
*
iov
);
PyErr_NoMemory
();
return
total
;
return
-
1
;
}
for
(
i
=
0
;
i
<
cnt
;
i
++
)
{
...
...
@@ -8082,7 +8082,7 @@ fail:
PyBuffer_Release
(
&
(
*
buf
)[
j
]);
}
PyMem_Del
(
*
buf
);
return
0
;
return
-
1
;
}
static
void
...
...
@@ -8122,7 +8122,7 @@ posix_readv(PyObject *self, PyObject *args)
}
cnt
=
PySequence_Size
(
seq
);
if
(
!
iov_setup
(
&
iov
,
&
buf
,
seq
,
cnt
,
PyBUF_WRITABLE
)
)
if
(
iov_setup
(
&
iov
,
&
buf
,
seq
,
cnt
,
PyBUF_WRITABLE
)
<
0
)
return
NULL
;
Py_BEGIN_ALLOW_THREADS
...
...
@@ -8130,6 +8130,9 @@ posix_readv(PyObject *self, PyObject *args)
Py_END_ALLOW_THREADS
iov_cleanup
(
iov
,
buf
,
cnt
);
if
(
n
<
0
)
return
posix_error
();
return
PyLong_FromSsize_t
(
n
);
}
#endif
...
...
@@ -8254,8 +8257,8 @@ posix_sendfile(PyObject *self, PyObject *args, PyObject *kwdict)
Py_ssize_t
i
=
0
;
/* Avoid uninitialized warning */
sf
.
hdr_cnt
=
PySequence_Size
(
headers
);
if
(
sf
.
hdr_cnt
>
0
&&
!
(
i
=
iov_setup
(
&
(
sf
.
headers
),
&
hbuf
,
headers
,
sf
.
hdr_cnt
,
PyBUF_SIMPLE
)))
(
i
=
iov_setup
(
&
(
sf
.
headers
),
&
hbuf
,
headers
,
sf
.
hdr_cnt
,
PyBUF_SIMPLE
))
<
0
)
return
NULL
;
#ifdef __APPLE__
sbytes
+=
i
;
...
...
@@ -8271,8 +8274,8 @@ posix_sendfile(PyObject *self, PyObject *args, PyObject *kwdict)
Py_ssize_t
i
=
0
;
/* Avoid uninitialized warning */
sf
.
trl_cnt
=
PySequence_Size
(
trailers
);
if
(
sf
.
trl_cnt
>
0
&&
!
(
i
=
iov_setup
(
&
(
sf
.
trailers
),
&
tbuf
,
trailers
,
sf
.
trl_cnt
,
PyBUF_SIMPLE
)))
(
i
=
iov_setup
(
&
(
sf
.
trailers
),
&
tbuf
,
trailers
,
sf
.
trl_cnt
,
PyBUF_SIMPLE
))
<
0
)
return
NULL
;
#ifdef __APPLE__
sbytes
+=
i
;
...
...
@@ -8483,7 +8486,7 @@ posix_writev(PyObject *self, PyObject *args)
}
cnt
=
PySequence_Size
(
seq
);
if
(
!
iov_setup
(
&
iov
,
&
buf
,
seq
,
cnt
,
PyBUF_SIMPLE
)
)
{
if
(
iov_setup
(
&
iov
,
&
buf
,
seq
,
cnt
,
PyBUF_SIMPLE
)
<
0
)
{
return
NULL
;
}
...
...
@@ -8492,6 +8495,9 @@ posix_writev(PyObject *self, PyObject *args)
Py_END_ALLOW_THREADS
iov_cleanup
(
iov
,
buf
,
cnt
);
if
(
res
<
0
)
return
posix_error
();
return
PyLong_FromSsize_t
(
res
);
}
#endif
...
...
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